mirror of
https://github.com/tabler/tabler.git
synced 2025-12-23 10:24:24 +04:00
31 lines
914 B
SCSS
31 lines
914 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
.max-h-full { max-height: 100% !important; }
|
|
.max-h-screen { max-height: 100vh !important; }
|
|
|
|
.min-h-0 { min-height: 0 !important; }
|
|
.min-h-full { min-height: 100% !important; }
|
|
.min-h-screen { min-height: 100vh !important; }
|
|
|
|
.min-w-0 { min-width: 0 !important; }
|
|
.min-w-full { min-width: 100% !important; }
|
|
|
|
@each $size-name, $size in $sizes-percentage {
|
|
.w-#{$size-name}p { width: $size !important; }
|
|
.h-#{$size-name}p { height: $size !important; }
|
|
}
|
|
|
|
@each $size-name, $size in map_merge($spacers, $size-spacers) {
|
|
.w-#{$size-name} { width: $size !important; }
|
|
.h-#{$size-name} { height: $size !important; }
|
|
}
|
|
|
|
.h-screen { height: 100vh !important; }
|
|
.w-screen { width: 100vw !important; }
|
|
|
|
@each $size-name, $size in $size-max-spacers {
|
|
.max-w-#{$size-name} { max-width: $size !important; }
|
|
.max-h-#{$size-name} { max-height: $size !important; }
|
|
}
|
|
|