Use pointer cursor for buttons

This commit is contained in:
dtonon 2026-06-15 14:06:46 +02:00
parent fb74eda8a1
commit 826c806f96

View file

@ -10,6 +10,13 @@ html {
font-size: 16px;
}
/* Tailwind 4's preflight drops the pointer cursor on buttons; restore it for
enabled buttons (disabled ones keep the default arrow). */
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]) {
cursor: pointer;
}
body {
background-color: var(--color-neutral-100);
}