mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-08-26 06:06:17 +01:00
32 lines
402 B
SCSS
32 lines
402 B
SCSS
@for $i from 0 through 2 {
|
|
.m-#{$i} {
|
|
margin: 6px * $i;
|
|
}
|
|
|
|
.mx-#{$i} {
|
|
margin-left: 6px * $i;
|
|
margin-right: 6px * $i;
|
|
}
|
|
|
|
.my-#{$i} {
|
|
margin-top: 6px * $i;
|
|
margin-bottom: 6px * $i;
|
|
}
|
|
|
|
.ml-#{$i} {
|
|
margin-left: 6px * $i;
|
|
}
|
|
|
|
.mt-#{$i} {
|
|
margin-top: 6px * $i;
|
|
}
|
|
|
|
.mr-#{$i} {
|
|
margin-right: 6px * $i;
|
|
}
|
|
|
|
.mb-#{$i} {
|
|
margin-bottom: 6px * $i;
|
|
}
|
|
}
|