fix nav colors

This commit is contained in:
Ben Haynes
2021-01-25 10:52:35 -05:00
parent da22c48cb8
commit dbd7dfb328
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<template functional>
<div class="v-list-item-text type-text">
<div class="v-list-item-text">
<slot />
</div>
</template>

View File

@@ -103,16 +103,16 @@ Node: ${parsedInfo.value?.node.version}
color: var(--foreground-subdued);
transition: color var(--fast) var(--transition);
}
::v-deep .type-text {
::v-deep .v-list-item-text {
color: var(--foreground-subdued);
transition: color var(--fast) var(--transition);
}
&:hover {
.v-icon {
color: var(--foreground-normal);
color: var(--foreground-normal-alt);
}
::v-deep .type-text {
color: var(--foreground-normal);
::v-deep .v-list-item-text {
color: var(--foreground-normal-alt);
}
}
}