You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
306 B
SCSS
19 lines
306 B
SCSS
@import '../common/abstracts/variable';
|
|
@import '../common/abstracts/mixin';
|
|
|
|
$i: 1;
|
|
|
|
@include b(col) {
|
|
float: left;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@while $i <= 24 {
|
|
.wd-col__#{$i} {
|
|
width: calc(100% / 24 * $i);
|
|
}
|
|
.wd-col__offset-#{$i} {
|
|
margin-left: calc(100% / 24 * $i);
|
|
}
|
|
$i: $i + 1;
|
|
} |