This commit is contained in:
s-lnk
2026-04-30 21:58:39 +03:00
commit aabe5fe2b7
2923 changed files with 366740 additions and 0 deletions
@@ -0,0 +1,23 @@
// Height values in vh
.h-100vh {
height: 100vh !important;
}
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
@each $prop, $abbrev in (top: top) {
@each $size, $length in $sizes {
// Spacing (for elements with absolute position)
.mw#{$infix}-#{$size} {
max-width: $length !important;
}
}
}
}
}