fix: show 'not allowed' cursor on readonly input fields

This commit is contained in:
Björn Fromme
2025-05-02 12:52:01 +02:00
parent f9362d8886
commit f7dfcc1c60
+4 -2
View File
@@ -21,7 +21,9 @@ label.required:after {
@apply border-red-500;
}
input[readonly],
select[readonly] {
@apply pointer-events-none;
@apply pointer-events-none cursor-not-allowed;
}
input[readonly] {
@apply cursor-not-allowed;
}