From 91037ab242e8be01dab2150a2ac07b4f92f25922 Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Fri, 19 Jul 2024 13:26:26 +0200 Subject: [PATCH] Fix placeholder color issue for selects --- client/pages/forms/[slug]/index.vue | 16 ---------------- client/scss/app.scss | 12 ++++++++++++ 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/client/pages/forms/[slug]/index.vue b/client/pages/forms/[slug]/index.vue index e02dc57f..ceb2631c 100644 --- a/client/pages/forms/[slug]/index.vue +++ b/client/pages/forms/[slug]/index.vue @@ -238,19 +238,3 @@ useHead({ script: [{ src: '/widgets/iframeResizer.contentWindow.min.js' } ] }) - - diff --git a/client/scss/app.scss b/client/scss/app.scss index 470b7505..e844bc8b 100644 --- a/client/scss/app.scss +++ b/client/scss/app.scss @@ -29,6 +29,18 @@ body.dark * { h2 { @apply text-3xl font-semibold; } + + p, div { + @apply text-gray-900 dark:text-white text-inherit; + } + + h1, h2, h3, h4, h5, h6 { + @apply text-gray-900 dark:text-white text-inherit; + } + + a { + @apply text-blue-600 hover:underline text-inherit; + } } .bg-white {