-Removed no longer needed files -Created ipk for quecmanager -Thank you @dr-dolomite for your hard work on this! Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
22 lines
466 B
SCSS
22 lines
466 B
SCSS
@use "../utilities/initial-variables" as iv;
|
|
|
|
.#{iv.$helpers-prefix}clipped {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
$overflows: auto clip hidden scroll visible;
|
|
|
|
@each $overflow in $overflows {
|
|
.#{iv.$helpers-prefix}overflow-#{$overflow} {
|
|
overflow: $overflow !important;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}overflow-x-#{$overflow} {
|
|
overflow-x: $overflow !important;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}overflow-y-#{$overflow} {
|
|
overflow-y: $overflow !important;
|
|
}
|
|
}
|