mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 23:33:36 +01:00
18 lines
267 B
SCSS
18 lines
267 B
SCSS
.question {
|
|
&--fixed {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 999;
|
|
|
|
@include media-breakpoint-up('sm') {
|
|
position: fixed;
|
|
}
|
|
}
|
|
|
|
&--hidden {
|
|
visibility: hidden;
|
|
position: relative;
|
|
box-shadow: none;
|
|
z-index: -1;
|
|
}
|
|
}
|