From c421c3a5b7f3870b51651290fed3b5c2661d2c2d Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 26 Jun 2024 16:48:12 +0200 Subject: [PATCH] hadnlign edit question button color --- resources/css/admin-style.css | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/resources/css/admin-style.css b/resources/css/admin-style.css index 8d41c2c..d22a2d7 100644 --- a/resources/css/admin-style.css +++ b/resources/css/admin-style.css @@ -176,3 +176,42 @@ @apply !border-neutral-400; } } + +.edit-question-button { + @apply text-white py-2 px-4 mt-3 block w-fit rounded-full; + &:hover { + @apply text-white; + filter: brightness(1.1) saturate(1.4); + } + .acoustique &, + .akoestiek &, + .petites-coproprietes &, + .kleine-mede-eigendommen & { + @apply bg-acoustique-coproprietes; + } + .isolation &, + .isolatie &, + .au-quotidien &, + .dagelijks & { + @apply bg-isolation-quotidien; + } + .location &, + .verhuur &, + .durabilite &, + .duurzaamheid & { + @apply bg-location-durabilite; + } + .urbanisme &, + .stedenbouw &, + .energies &, + .energie & { + @apply bg-energies-urbanisme; + } + + .patrimoine &, + .erfgoed &, + .sante-et-securite &, + .gezondheid-en-veiligheid { + @apply bg-patrimoine-sante-securite; + } +}