From 3b3447c42c37a15352e260442256e66809fdd47b Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Mon, 7 Jul 2025 18:34:26 +0200 Subject: [PATCH] fix: add cursor pointer style to non disabled buttons --- src/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app.css b/src/app.css index adc3a3b..a86c839 100644 --- a/src/app.css +++ b/src/app.css @@ -154,4 +154,8 @@ body { @apply bg-background text-foreground; } + button:not([disabled]), + [role="button"]:not([disabled]) { + cursor: pointer; + } }