style(tailwind): add cursor pointer for non-disabled buttons

This commit is contained in:
MyPrototypeWhat 2025-11-06 17:24:12 +08:00
parent 1b67b851b7
commit c4fa975b89

View File

@ -73,6 +73,13 @@
}
}
@layer base {
button:not(:disabled),
[role="button"]:not(:disabled) {
cursor: pointer;
}
}
:root {
background-color: unset;
}