hippie/source/style/modules/ui/_settings_module.scss

56 lines
718 B
SCSS
Raw Normal View History

@mixin nav-spacer($name, $size, $orientation) {
.spacer-#{$name} {
width: $size;
margin: 0;
border: $border_dotted;
opacity: .25;
}
}
2024-08-15 22:41:12 +02:00
#frame {
position: relative;
height: 100%;
header,
aside,
footer {
border: 1px solid transparent;
}
&>header {
background-color: rgba(0, 0, 0, .1);
2024-08-15 22:41:12 +02:00
}
main {
aside {
background-color: $color_brighter;
}
}
}
.frame-flex {
display: flex;
flex-direction: column;
gap: $space_basic;
2024-08-15 22:41:12 +02:00
main {
flex: 1;
aside,
section {
2024-08-15 22:41:12 +02:00
height: 100%;
}
}
}
.io {
.spacer {
width: $space_double;
margin: 0;
border: $border_dotted;
opacity: .25;
}
@include nav-spacer('a', $space_double, false);
@include nav-spacer('b', $space_small, false);
2024-08-15 22:41:12 +02:00
}