remove fixed positioning from questions in mobile view

This commit is contained in:
Andreas Nedbal 2022-12-23 00:57:12 +01:00 committed by Andreas Nedbal
parent 61c4033dfa
commit 538eaecd86
1 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,12 @@
.question { .question {
&--fixed { &--fixed {
position: fixed; position: absolute;
width: 100%; width: 100%;
z-index: 999; z-index: 999;
@include media-breakpoint-up('sm') {
position: fixed;
}
} }
&--hidden { &--hidden {
@ -11,4 +15,4 @@
box-shadow: none; box-shadow: none;
z-index: -1; z-index: -1;
} }
} }