From e0ea4b23de28699a8d18449c0a88f4325bdd2fbe Mon Sep 17 00:00:00 2001 From: Antoine M Date: Thu, 3 Jul 2025 17:07:55 +0200 Subject: [PATCH] FEATURE Special style for the form contributions --- resources/css/forms/form_contributions.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 resources/css/forms/form_contributions.css diff --git a/resources/css/forms/form_contributions.css b/resources/css/forms/form_contributions.css new file mode 100644 index 0000000..c414934 --- /dev/null +++ b/resources/css/forms/form_contributions.css @@ -0,0 +1,13 @@ +#nf-form-2-cont { + nf-fields-wrap { + @apply grid gap-4 grid-cols-2; + } + + nf-field { + @apply block col-span-2; + &:nth-child(1), + &:nth-child(2) { + @apply col-span-2 lg:col-span-1; + } + } +}