retrospring/app/assets/stylesheets/components/_question.scss
Andreas Nedbal d61fa91f0d Refactor question styles
- Created styles in component/question
- Removed old styles from scss/panel
- Moved question partial to question controller resource, as it is only used there, not shared
2020-04-30 00:44:43 +02:00

14 lines
No EOL
192 B
SCSS

.question {
&--fixed {
position: fixed;
width: 100%;
z-index: 999;
}
&--hidden {
visibility: hidden;
position: relative;
box-shadow: none;
z-index: -1;
}
}