feat: New settings

- Add dependency to bootstrap icons
- Add example content
- Restructure layout
- Now more usage of base hippie styles
This commit is contained in:
sthag 2025-06-20 17:09:06 +02:00
parent 5786e9e4b0
commit 57dffa3502
3 changed files with 124 additions and 40 deletions

View file

@ -1,12 +1,24 @@
@mixin nav-spacer($name, $size, $orientation) {
.spacer-#{$name} {
width: $size;
margin: 0;
border: $border_dotted;
opacity: .25;
}
}
#frame {
position: relative;
height: 100%;
background-color: $color-dark;
.title-bar {
button {
margin: 0 2px;
}
header,
aside,
footer {
border: 1px solid transparent;
}
&>header {
background-color: rgba(0, 0, 0, .1);
}
main {
@ -19,20 +31,26 @@
.frame-flex {
display: flex;
flex-direction: column;
gap: $space_basic;
.title-bar {
display: flex;
div:last-child {
margin-left: auto;
}
}
main {
flex: 1;
aside, section {
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);
}