mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-30 00:21:24 +01:00
16 lines
216 B
SCSS
16 lines
216 B
SCSS
.Flex {
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
@for $i from 1 through 2 {
|
|
.Flex--spacing--#{$i} {
|
|
margin: -3px * $i;
|
|
margin-bottom: 3px * $i;
|
|
|
|
& > .Flex__item {
|
|
margin: 3px * $i;
|
|
}
|
|
}
|
|
}
|