Move sidebar color

This commit is contained in:
RealStickman 2022-11-19 16:37:04 +01:00
parent cbe0c1d98d
commit f622b6dfab
6 changed files with 17 additions and 8 deletions

View File

@ -941,4 +941,7 @@ body {
background: #111111;
color: #dddddd; }
#sidebar {
background-color: #38424D; }
/*# sourceMappingURL=theme.css.map */

File diff suppressed because one or more lines are too long

View File

@ -3,13 +3,13 @@ Put your custom CSS in this file.
*/
/* sidebar big lower portion */
#sidebar {
/*background-color: #262c31;*/
/*background-color: #131114;*/
/*background-color: #34233a;*/
/*background-color: #2e2333;*/
/*#sidebar {
background-color: #262c31;
background-color: #131114;
background-color: #34233a;
background-color: #2e2333;
background-color: #47314f;
}
}*/
/* sidebar top portion */
#sidebar #header {

View File

@ -15,3 +15,5 @@
// Core
@import "theme/core";
// Nav
@import "theme/nav";

View File

@ -0,0 +1 @@
$sidebar-bg: #47314f;

View File

@ -0,0 +1,3 @@
#sidebar {
background-color: $sidebar-bg;
}