mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
comments mock
This commit is contained in:
parent
bdf7ba1ccb
commit
2a6604afaf
18 changed files with 340 additions and 12 deletions
18
src/components/containers/Grid/styles.scss
Normal file
18
src/components/containers/Grid/styles.scss
Normal file
|
@ -0,0 +1,18 @@
|
|||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
grid-row-gap: $gap;
|
||||
grid-column-gap: $gap;
|
||||
grid-auto-flow: row;
|
||||
grid-auto-rows: auto;
|
||||
grid-auto-columns: auto;
|
||||
|
||||
&.horizontal {
|
||||
grid-auto-flow: column;
|
||||
}
|
||||
|
||||
&.square {
|
||||
grid-auto-flow: dense;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue