improve overlay design and fix footer

To fix:
- css split between nav and nav-tree repeated due to mobile
- right overlay needs padding adjustments and resizing for mobile
This commit is contained in:
outfoxxed 2024-10-14 17:19:10 -07:00
parent 0a69344f98
commit c516c950a8
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
8 changed files with 132 additions and 174 deletions

View file

@ -52,6 +52,8 @@ html {
--nav-selected-bkg: var(--blue) 100 90;
--nav-selected-text: var(--blue) 60 60;
--nav-indicator-bkg: var(--blue) 45 80;
--overlay-bkg: var(--blue) 10 93;
--overlay-bkg-border: var(--blue) 10 75;
}
html.dark {
@ -93,6 +95,8 @@ html.dark {
--nav-selected-bkg: var(--blue) 40 13;
--nav-selected-text: var(--blue) 100 70;
--nav-indicator-bkg: var(--blue) 30 30;
--overlay-bkg: var(--blue) 41 4;
--overlay-bkg-border: var(--blue) 17 13;
}
* {
@ -103,7 +107,8 @@ html.dark {
}
body {
min-height: 100svh;
height: max-content;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}