From cff5398ebdfe361fa989e46d2d1792c00dc4eb98 Mon Sep 17 00:00:00 2001 From: Michelle Date: Thu, 28 May 2026 09:22:50 +0200 Subject: [PATCH] fix: restore pointer cursor for buttons in index.css --- src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.css b/src/index.css index 3ef30a6..829fc48 100644 --- a/src/index.css +++ b/src/index.css @@ -45,6 +45,12 @@ ::file-selector-button { border-color: var(--color-gray-200, currentcolor); } + + /* Restore Tailwind v3 default: buttons get a pointer cursor */ + button:not(:disabled), + [role="button"]:not([aria-disabled="true"]) { + cursor: pointer; + } } @utility btn-primary {