feat: move all css to includes dir
This commit is contained in:
parent
408e859ef4
commit
6a84af0c37
29 changed files with 4 additions and 4 deletions
16
src/includes/css/compositions/repel.css
Normal file
16
src/includes/css/compositions/repel.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
REPEL
|
||||
A little layout that pushes items away from each other where
|
||||
there is space in the viewport and stacks on small viewports
|
||||
*/
|
||||
.repel {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: var(--spacing-0\.5);
|
||||
}
|
||||
|
||||
.repel[data-nowrap] {
|
||||
flex-wrap: nowrap;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue