orchai/src/index.css
2026-04-14 15:30:19 +02:00

26 lines
527 B
CSS

@import "tailwindcss";
@layer base {
:where(
a[href],
button:not(:disabled),
summary,
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
select:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
label[for]
) {
cursor: pointer;
}
:where(
button:disabled,
input:disabled,
select:disabled,
[role="button"][aria-disabled="true"]
) {
cursor: not-allowed;
}
}