From 87776fdbe77e54be0128a774f664a007e94f85c6 Mon Sep 17 00:00:00 2001 From: TZGyn Date: Sat, 17 Jun 2023 02:41:19 +0800 Subject: [PATCH] Update frontend theme --- frontend/assets/css/tailwind.css | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index f1a6ce1..f639b5c 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -2,6 +2,16 @@ @tailwind components; @tailwind utilities; -body { - @apply bg-primary text-white; +html, +body, +#__nuxt { + @apply text-light h-full w-full bg-primary; +} + +input { + @apply bg-darkgray outline-none focus:outline-none; +} + +textarea { + @apply bg-darkgray outline-none focus:outline-none; }