From f8c54d2f90e8412befe6de8a502373ecdc47526c Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 22 Nov 2023 14:39:13 +0100 Subject: [PATCH] first rough styling of forms --- resources/css/components/forms.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 resources/css/components/forms.css diff --git a/resources/css/components/forms.css b/resources/css/components/forms.css new file mode 100644 index 0000000..ff4a231 --- /dev/null +++ b/resources/css/components/forms.css @@ -0,0 +1,17 @@ +form { + textarea, + input { + @apply !border-neutral-400; + } + + input:not([type='checkbox']):not([type='radio']) { + @apply !rounded-lg !py-6; + } + + legend { + @apply !font-bold !text-neutral-900 !text-lg; + } + label { + @apply !text-neutral-700 !text-base !font-medium; + } +}