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