Add step and preface section includes

This commit is contained in:
Endorphin3D
2023-05-16 00:35:34 -04:00
parent 14bb26fb66
commit 61f055078b
12 changed files with 207 additions and 59 deletions

View File

@@ -184,4 +184,24 @@
.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }
.clear-none { clear: none; }
.clear-none { clear: none; }
@for $i from 1 through length($spacers) {
$size: #{map-get($spacers, sp-#{$i - 1})};
$scale: #{$i - 1};
// .gap-0, .gap-1, .gap-2...
.gap-#{$scale} {
gap: #{$size};
}
// .gap-x-0, .gap-x-1, .gap-x-2...
.gap-x-#{$scale} {
column-gap: #{$size};
}
// .gap-y-0, .gap-y-1, .gap-y-2...
.gap-y-#{$scale} {
row-gap: #{$size};
}
}