initial server implementation

This commit is contained in:
2026-05-31 17:35:41 -05:00
parent 686f54af64
commit 16cb057670
106 changed files with 102494 additions and 4 deletions
+21
View File
@@ -0,0 +1,21 @@
@use "../utilities/initial-variables" as iv;
.#{iv.$class-prefix}#{iv.$helpers-prefix}clipped {
overflow: hidden !important;
}
$overflows: auto clip hidden scroll visible;
@each $overflow in $overflows {
.#{iv.$class-prefix}#{iv.$helpers-prefix}overflow-#{$overflow} {
overflow: $overflow !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}overflow-x-#{$overflow} {
overflow-x: $overflow !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}overflow-y-#{$overflow} {
overflow-y: $overflow !important;
}
}