- Update hippie styles - Move top element for new page to header macro - Reassign ui and example collections
38 lines
No EOL
397 B
SCSS
Executable file
38 lines
No EOL
397 B
SCSS
Executable file
#frame {
|
|
position: relative;
|
|
height: 100%;
|
|
background-color: $color-dark;
|
|
|
|
.title-bar {
|
|
button {
|
|
margin: 0 2px;
|
|
}
|
|
}
|
|
|
|
main {
|
|
aside {
|
|
background-color: $color_brighter;
|
|
}
|
|
}
|
|
}
|
|
|
|
.frame-flex {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.title-bar {
|
|
display: flex;
|
|
|
|
div:last-child {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
|
|
aside, section {
|
|
height: 100%;
|
|
}
|
|
}
|
|
} |