1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Changelog, support for dark theme in document root

This commit is contained in:
dengr1065
2020-06-17 02:55:13 +03:00
parent 7f32216404
commit 97c52169da
4 changed files with 23 additions and 2 deletions

View File

@@ -38,6 +38,10 @@ html {
right: 0;
background: #dee1ea;
@include DarkThemeOverride {
background: #5c606c;
}
}
body {

View File

@@ -350,7 +350,7 @@ button,
}
@mixin DarkThemeOverride {
@at-root body[data-theme="dark"] &,
@at-root html[data-theme="dark"] &,
&[data-theme="dark"] {
@content;
}

View File

@@ -61,4 +61,21 @@
}
}
}
@include DarkThemeOverride {
.headerBar {
h1 {
color: #cfceca;
}
.backButton {
filter: invert(1);
}
}
> .container > .content {
background: #4b4c50;
color: #eee;
}
}
}