remove fixed positioning from questions in mobile view
This commit is contained in:
parent
61c4033dfa
commit
538eaecd86
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue