mirror of
https://github.com/tabler/tabler.git
synced 2026-07-15 18:11:42 +04:00
11 lines
222 B
SCSS
11 lines
222 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
@each $size-name, $size in map_merge($spacers, $size-spacers) {
|
|
.w-#{$size-name} {
|
|
width: $size !important;
|
|
}
|
|
.h-#{$size-name} {
|
|
height: $size !important;
|
|
}
|
|
}
|