Add hover cursor styles for buttons in the theme CSS

This commit is contained in:
Arthur Belleville 2025-07-27 14:59:32 +02:00
parent 45c0e95e85
commit d0f0bdca23
No known key found for this signature in database

View file

@ -135,4 +135,12 @@
scrollbar-width: thin;
scrollbar-color: var(--color-border) transparent;
}
button:hover {
cursor: pointer;
}
button:disabled:hover {
cursor: not-allowed;
}
}