fix: dark mode for user and team settings
This commit is contained in:
parent
cbecea62ae
commit
ed85557cf3
3 changed files with 8 additions and 2 deletions
|
@ -300,5 +300,11 @@
|
||||||
--primary-h: 217deg;
|
--primary-h: 217deg;
|
||||||
--primary-s: 98%;
|
--primary-s: 98%;
|
||||||
--primary-l: 58%;
|
--primary-l: 58%;
|
||||||
|
|
||||||
|
--scheme-main-bis: var(--grey-100);
|
||||||
|
--scheme-main-ter: var(--grey-100);
|
||||||
|
--scheme-invert: var(--grey-900);
|
||||||
|
--scheme-invert-bis: var(--grey-900);
|
||||||
|
--scheme-invert-ter: var(--grey-800);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -63,7 +63,7 @@ ul.teams {
|
||||||
border-bottom: 1px solid $border;
|
border-bottom: 1px solid $border;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #363636;
|
color: var(--text);
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
transition: background-color $transition;
|
transition: background-color $transition;
|
||||||
|
|
|
@ -83,7 +83,7 @@ const isLocalUser = computed(() => store.state.auth.info?.isLocalUser)
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
color: var(--dark);
|
color: var(--text);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-left: 3px solid transparent;
|
border-left: 3px solid transparent;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue