Use pointer cursor for buttons
This commit is contained in:
parent
fb74eda8a1
commit
826c806f96
1 changed files with 7 additions and 0 deletions
|
|
@ -10,6 +10,13 @@ html {
|
||||||
font-size: 16px;
|
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 {
|
body {
|
||||||
background-color: var(--color-neutral-100);
|
background-color: var(--color-neutral-100);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue