Fixed small visual problem with buttons

This commit is contained in:
DrMint 2022-03-07 16:27:38 +01:00
parent a0c69c3876
commit 386efce0a7
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export default function Button(props: ButtonProps): JSX.Element {
} ${
props.active
? "text-light bg-black drop-shadow-black-lg !border-black cursor-not-allowed"
: "cursor-pointer hover:text-light hover:bg-dark hover:drop-shadow-shade-lg active:bg-black active:drop-shadow-black-lg active:border-black"
: "cursor-pointer hover:text-light hover:bg-dark hover:drop-shadow-shade-lg active:bg-black active:text-light active:drop-shadow-black-lg active:border-black"
}`}
>
{props.children}