Browse Source
Fix light mode admin menu active text color (#2307)
* fix color
* remove duplicates
pull/2312/head
Bernd Storath
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
2 deletions
-
src/app/pages/admin.vue
|
|
|
@ -13,11 +13,12 @@ |
|
|
|
v-for="(item, index) in menuItems" |
|
|
|
:key="index" |
|
|
|
:to="`/admin/${item.id}`" |
|
|
|
active-class="bg-red-800 rounded" |
|
|
|
class="group rounded" |
|
|
|
active-class="bg-red-800 active" |
|
|
|
> |
|
|
|
<BaseSecondaryButton |
|
|
|
as="span" |
|
|
|
class="w-full cursor-pointer rounded p-2 font-medium transition-colors duration-200 hover:bg-red-800 dark:text-neutral-200" |
|
|
|
class="w-full font-medium group-[.active]:text-white" |
|
|
|
> |
|
|
|
{{ item.name }} |
|
|
|
</BaseSecondaryButton> |
|
|
|
|