fix active color

This commit is contained in:
2023-06-14 20:39:36 +02:00
parent a4c25b8342
commit 9933f730ad
6 changed files with 19 additions and 70 deletions

View File

@@ -60,7 +60,7 @@ const handleSignIn = async (close: () => Promise<boolean>) => {
>
<i class="fa-fw fa-solid fa-plus-circle scale-[115%]" />
</UIButton>
<UIModal v-if="(initialized && !user)">
<UIModal v-if="initialized && !user">
<template #activator="{ open }">
<UIButton
size="sm"
@@ -101,7 +101,7 @@ const handleSignIn = async (close: () => Promise<boolean>) => {
}
.topbar-button {
&:active {
@apply border-white bg-white text-primary
@apply border-white bg-white text-primary;
}
@apply hover:border-white hover:bg-white hover:text-primary focus-visible:outline-white;
}