From 386efce0a78b79d35106c35c36a44b925b03c58f Mon Sep 17 00:00:00 2001 From: DrMint Date: Mon, 7 Mar 2022 16:27:38 +0100 Subject: [PATCH] Fixed small visual problem with buttons --- src/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 73eda2b..a968847 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -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}