Fix placeholder color issue for selects

This commit is contained in:
Julien Nahum 2024-07-19 13:26:26 +02:00
parent f4386fbcbc
commit 91037ab242
2 changed files with 12 additions and 16 deletions

View File

@ -238,19 +238,3 @@ useHead({
script: [{ src: '/widgets/iframeResizer.contentWindow.min.js' } ]
})
</script>
<style lang="scss">
#public-form {
p, div {
@apply text-gray-900 dark:text-white;
}
h1, h2, h3, h4, h5, h6 {
@apply text-gray-900 dark:text-white;
}
a {
@apply text-blue-600 hover:underline;
}
}
</style>

12
client/scss/app.scss vendored
View File

@ -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 {