Fix EX badge colors

This commit is contained in:
Justin Edmund 2023-06-18 01:18:33 -07:00
parent d9c8966f06
commit 6dae7d9f28
2 changed files with 8 additions and 3 deletions

View file

@ -141,9 +141,9 @@
}
.ExtraIndicator {
background: var(--extra-purple-bg);
background: var(--extra-purple-secondary);
border-radius: $full-corner;
color: var(--extra-purple-text);
color: $grey-100;
display: flex;
font-weight: $bold;
font-size: $font-tiny;

View file

@ -5,7 +5,7 @@
&:hover {
.ExtraIndicator {
background: var(--extra-purple-primary);
background: var(--extra-purple-secondary);
color: white;
}
@ -15,6 +15,11 @@
}
}
&.Selected .ExtraIndicator {
background: var(--extra-purple-secondary);
color: white;
}
.Text {
flex-grow: 1;
}