-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>
20 lines
404 B
SCSS
20 lines
404 B
SCSS
@use "../utilities/extends";
|
|
@use "../utilities/initial-variables" as iv;
|
|
|
|
.#{iv.$helpers-prefix}overlay,
|
|
.#{iv.$helpers-prefix}overlay {
|
|
@extend %overlay;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}relative {
|
|
position: relative !important;
|
|
}
|
|
|
|
$positions: absolute fixed relative static sticky;
|
|
|
|
@each $position in $positions {
|
|
.#{iv.$helpers-prefix}position-#{$position} {
|
|
position: $position !important;
|
|
}
|
|
}
|