member data listing

This commit is contained in:
Julian Krauser 2024-09-18 09:28:59 +02:00
parent 5eeea631c0
commit 6847ae083e
14 changed files with 286 additions and 15 deletions

View file

@ -81,3 +81,13 @@ input:not([type="checkbox"]),
textarea {
@apply rounded-md shadow-sm relative block w-full px-3 py-2 border border-gray-300 focus:border-primary placeholder-gray-500 text-gray-900 rounded-b-md focus:outline-none focus:ring-0 focus:z-10 sm:text-sm resize-none;
}
input[readonly],
textarea[readonly] {
@apply pointer-events-none;
}
input[disabled],
textarea[disabled] {
@apply opacity-75 pointer-events-none;
}