fix: add cursor pointer to all buttons and interactive cards

Buttons and [role="button"] elements now show pointer cursor globally.
card-interactive utility also sets cursor: pointer explicitly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-22 23:07:07 +00:00
parent 25241e5351
commit 40044a6a9c

View File

@@ -136,6 +136,10 @@
@apply bg-background text-foreground font-sans;
}
button, [role="button"] {
cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
@@ -166,6 +170,7 @@
background: var(--color-bg-card);
border: 1px solid var(--color-border-default);
border-radius: 8px;
cursor: pointer;
transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
border-color 200ms ease,
box-shadow 200ms ease;