14 lines
192 B
SCSS
14 lines
192 B
SCSS
|
.question {
|
||
|
&--fixed {
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
z-index: 999;
|
||
|
}
|
||
|
|
||
|
&--hidden {
|
||
|
visibility: hidden;
|
||
|
position: relative;
|
||
|
box-shadow: none;
|
||
|
z-index: -1;
|
||
|
}
|
||
|
}
|