move front end files into repo
This commit is contained in:
34
AobaClient/assets/style/nav.scss
Normal file
34
AobaClient/assets/style/nav.scss
Normal file
@@ -0,0 +1,34 @@
|
||||
@import 'mixins';
|
||||
@import 'colors';
|
||||
|
||||
|
||||
nav {
|
||||
display: grid;
|
||||
grid-template-areas: "Branding" "Nav" "Widgets" "Utils";
|
||||
grid-template-rows: auto 1fr auto auto;
|
||||
background-color: $featureColor;
|
||||
height: 100dvh;
|
||||
position: fixed;
|
||||
|
||||
>* {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.branding {
|
||||
grid-area: Branding;
|
||||
}
|
||||
|
||||
.mainNav {
|
||||
grid-area: Nav;
|
||||
}
|
||||
|
||||
.widgets {
|
||||
grid-area: Widgets;
|
||||
}
|
||||
|
||||
.utils {
|
||||
grid-area: Utils;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user