Files
bulma/sass/helpers/position.scss

20 lines
480 B
SCSS
Raw Normal View History

2024-03-21 16:11:54 +00:00
@use "../utilities/extends";
@use "../utilities/initial-variables" as iv;
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}overlay,
.#{iv.$class-prefix}#{iv.$helpers-prefix}overlay {
2024-03-21 16:11:54 +00:00
@extend %overlay;
}
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}relative {
2024-03-21 16:11:54 +00:00
position: relative !important;
}
$positions: absolute fixed relative static sticky;
@each $position in $positions {
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}position-#{$position} {
2024-03-21 16:11:54 +00:00
position: $position !important;
}
}