mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 21:31:28 +04:00
15 lines
264 B
SCSS
15 lines
264 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
@use 'sass:map';
|
|
|
|
@use '../config' as *;
|
|
|
|
@each $size-name, $size in map.merge($spacers, $size-spacers) {
|
|
.w-#{$size-name} {
|
|
width: $size !important;
|
|
}
|
|
.h-#{$size-name} {
|
|
height: $size !important;
|
|
}
|
|
}
|