hacker.tours-website/themes/zen/assets/sass/components/spacing/_spacing.scss

14 lines
220 B
SCSS
Raw Permalink Normal View History

2024-06-13 22:14:05 +02:00
@each $name, $space in $spacing {
.mt--#{$name} {
@include margin-block-start($space);
}
.mb--#{$name} {
@include margin-block-end($space);
}
.mtb--#{$name} {
@include margin-block($space);
}
}