mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-06 14:55:04 +01:00
30 lines
479 B
SCSS
30 lines
479 B
SCSS
|
|
||
|
.config-group {
|
||
|
position: relative;
|
||
|
|
||
|
&--scrollable {
|
||
|
flex: 1 1 100%;
|
||
|
width: auto;
|
||
|
height: auto;
|
||
|
padding: 0 0 0 space(16);
|
||
|
|
||
|
.config-group__wrapper {
|
||
|
max-height: 100%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__title {
|
||
|
@extend %label-md;
|
||
|
color: $color-primary;
|
||
|
|
||
|
&--hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__wrapper {
|
||
|
padding: space(16) 0;
|
||
|
}
|
||
|
}
|