Added Auth Context

implement login client code (todo: server login)
Added aboa icon
This commit is contained in:
2025-05-03 23:52:51 -04:00
parent e223612a08
commit d0cc8be566
21 changed files with 135 additions and 48 deletions

View File

@@ -1,6 +1,5 @@
@import 'mixins';
@import 'colors';
@import "mixins";
@import "colors";
nav {
display: grid;
@@ -9,14 +8,20 @@ nav {
background-color: $featureColor;
height: 100dvh;
position: fixed;
width: $navBarSize;
>* {
> * {
display: flex;
flex-direction: column;
}
.branding {
grid-area: Branding;
img {
width: $navBarSize;
object-fit: contain;
}
}
.mainNav {
@@ -30,5 +35,4 @@ nav {
.utils {
grid-area: Utils;
}
}
}