mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
21 lines
386 B
SCSS
21 lines
386 B
SCSS
@import "~/styles/variables.scss";
|
|
|
|
$gutter: $gap * 2;
|
|
|
|
.wrap {
|
|
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;
|
|
}
|
|
}
|