hippie/source/style/modules/ui/_settings_module.scss
sthag 57dffa3502 feat: New settings
- Add dependency to bootstrap icons
- Add example content
- Restructure layout
- Now more usage of base hippie styles
2025-06-20 17:09:06 +02:00

56 lines
No EOL
718 B
SCSS
Executable file

@mixin nav-spacer($name, $size, $orientation) {
.spacer-#{$name} {
width: $size;
margin: 0;
border: $border_dotted;
opacity: .25;
}
}
#frame {
position: relative;
height: 100%;
header,
aside,
footer {
border: 1px solid transparent;
}
&>header {
background-color: rgba(0, 0, 0, .1);
}
main {
aside {
background-color: $color_brighter;
}
}
}
.frame-flex {
display: flex;
flex-direction: column;
gap: $space_basic;
main {
flex: 1;
aside,
section {
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);
}