Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions ui/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,16 @@
input[type="radio"] {
@apply accent-teal-600;
}

/*
* Tailwind v3+ dropped the old preflight `cursor: pointer` reset for
* buttons, so every <button> in the app (every button/link-button, tab
* header, and icon button here is a native <button>) fell back to the
* browser's default arrow cursor on hover. One global rule fixes all of
* them; :not(:disabled) keeps disabled buttons on their existing
* `disabled:cursor-not-allowed` utility instead of fighting it.
*/
button:not(:disabled) {
cursor: pointer;
}
}
Loading