1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

added fluid lab

This commit is contained in:
Fedor Katurov 2021-06-30 14:43:45 +07:00
parent 7ce8939dce
commit 5bdfeb6ce4
7 changed files with 107 additions and 18 deletions

View file

@ -1,8 +1,21 @@
@import "~/styles/variables.scss";
$gutter: $gap * 2;
.wrap {
display: grid;
grid-auto-flow: row;
grid-auto-rows: auto;
grid-row-gap: $gap * 2;
display: -webkit-box; /* Not needed if autoprefixing */
display: -ms-flexbox; /* Not needed if autoprefixing */
display: flex;
width: 100%;
position: relative;
left: -$gutter;
}
.column {
padding-left: $gutter; /* gutter size */
background-clip: padding-box;
& > div {
margin-bottom: $gutter;
}
}