mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-13 21:33:20 +01:00
remove fixed positioning from questions in mobile view
This commit is contained in:
parent
61c4033dfa
commit
538eaecd86
1 changed files with 6 additions and 2 deletions
|
@ -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 a new issue