fix(ui): colors for the theme picker

pull/10897/head
charlie 2024-01-10 18:06:09 +08:00
parent 2abe280fb6
commit 53264f4048
1 changed files with 4 additions and 11 deletions

View File

@ -648,11 +648,10 @@
&-installed { &-installed {
margin: -2rem; margin: -2rem;
outline: none; outline: none;
padding: 1rem; padding: .5rem;
.it { .it {
user-select: none; user-select: none;
background-color: var(--ls-secondary-background-color);
border: 1px solid transparent; border: 1px solid transparent;
margin-bottom: 4px; margin-bottom: 4px;
cursor: pointer; cursor: pointer;
@ -662,18 +661,12 @@
font-weight: 600; font-weight: 600;
} }
&.is-active { &:hover, &.is-active {
background-color: var(--ls-tertiary-background-color); @apply opacity-100 bg-gray-06;
border: 1px solid var(--ls-quaternary-background-color);
opacity: 1;
} }
&.is-selected { &.is-selected {
opacity: 1; @apply opacity-100;
}
&:hover {
opacity: 1;
} }
} }
} }