add colors as css vars

This commit is contained in:
Simon Vieille 2020-04-08 17:13:49 +02:00
parent d07af9ddf9
commit b9bb3989f4
Signed by: deblan
GPG Key ID: 03383D15A1D31745
1 changed files with 5 additions and 5 deletions

View File

@ -26,9 +26,9 @@
height: 100vh;
width: 100%;
max-width: 250px;
background: #333;
background: var(--side-menu-background-color, #333);
z-index: 3000;
color: #fff;
color: var(--side-menu-text-color, #fff);
box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;
display: none;
}
@ -63,7 +63,7 @@
.side-menu-app a {
line-height: 30px;
color: #fff;
color: var(--side-menu-text-color, #fff);
display: block;
padding: 7px 0 7px 15px;
overflow: hidden;
@ -72,7 +72,7 @@
}
.side-menu-app a:hover, .side-menu-app.is-active a {
background: #444;
background: var(--side-menu-current-app-background-color, #444);
}
.side-menu-logo {
@ -87,7 +87,7 @@
height: 150px;
z-index: 2300;
max-width: 250px;
background: #333;
background: var(--side-menu-background-color, #333);
position: fixed;
padding-top: 2px;
top: 0;