index.scss 306 B

12345678910111213141516171819
  1. @import '../common/abstracts/variable';
  2. @import '../common/abstracts/mixin';
  3. $i: 1;
  4. @include b(col) {
  5. float: left;
  6. box-sizing: border-box;
  7. }
  8. @while $i <= 24 {
  9. .wd-col__#{$i} {
  10. width: calc(100% / 24 * $i);
  11. }
  12. .wd-col__offset-#{$i} {
  13. margin-left: calc(100% / 24 * $i);
  14. }
  15. $i: $i + 1;
  16. }