1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

fix light mode enum color

This commit is contained in:
EmeraldBlock 2021-06-04 15:57:48 -05:00
parent 9c2fdcf09a
commit 1dae08552b

View File

@ -233,7 +233,7 @@
@include S(min-width, 160px); @include S(min-width, 160px);
> div { > div {
background: #fff; background: $mainBgColor;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -245,7 +245,7 @@
transition: background-color 0.12s ease-in-out; transition: background-color 0.12s ease-in-out;
&:hover { &:hover {
background-color: #fafafa; background-color: darken($mainBgColor, 5);
} }
@include DarkThemeOverride { @include DarkThemeOverride {