mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
11 lines
204 B
SCSS
11 lines
204 B
SCSS
@import "src/styles/variables";
|
|
|
|
.grid {
|
|
box-sizing: border-box;
|
|
|
|
display: grid;
|
|
grid-column-gap: $gap;
|
|
grid-row-gap: $gap;
|
|
grid-template-columns: auto;
|
|
grid-template-rows: $comment_height;
|
|
}
|