Set $secondary-color for theme select

This commit is contained in:
0x1eef 2024-05-31 09:33:13 -03:00
parent 410ce5d96c
commit fe77825436

View file

@ -1,7 +1,7 @@
.content.theme { .content.theme {
@import "themes/blue/base/colors"; @import "themes/blue/base/colors";
.blue { .blue {
background: $primary-color; background: $secondary-color;
} }
} }
@ -10,10 +10,10 @@
.react-select.theme-select { .react-select.theme-select {
.active .circle { .active .circle {
background: $primary-color; background: $secondary-color;
} }
ul li.blue .circle { ul li.blue .circle {
background: $primary-color; background: $secondary-color;
} }
} }