fix: tooltip color in dark mode

This commit is contained in:
kolaente 2022-05-06 22:18:30 +02:00
parent 2dba9e6e57
commit 1a98305969
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
.v-popper--theme-tooltip .v-popper__inner {
padding: 5px 10px;
font-size: 0.8rem;
background: var(--dark);
background: var(--grey-900);
color: var(--white);
border-radius: 5px;
}
.dark .v-popper--theme-tooltip .v-popper__inner {
background: var(--white);
color: var(--dark);
color: var(--grey-900);
}