From 00f4e1bf0ce8597949e7c490ba260f54f5931d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6ssler?= Date: Thu, 16 Apr 2026 19:27:28 +0200 Subject: [PATCH] fix: No cursor change on button hover --- src/styles/app.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/app.css b/src/styles/app.css index 2e73bda..8d375ca 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -9,3 +9,8 @@ .dark { --color-fd-primary: oklch(0.68 0.15 237); } + +button:not([disabled]), +[role="button"]:not([disabled]) { + cursor: pointer; +}