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 {
&--fixed {
position: fixed;
position: absolute;
width: 100%;
z-index: 999;
@include media-breakpoint-up('sm') {
position: fixed;
}
}
&--hidden {
@ -11,4 +15,4 @@
box-shadow: none;
z-index: -1;
}
}
}