This commit is contained in:
Philippe Torrel
2026-07-06 14:25:41 +02:00
parent 549233f42a
commit ee4d6f0d41
226 changed files with 114478 additions and 20 deletions

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;
}
}