From 200bfcce2aae50a5464413dab415f9c2581535dc Mon Sep 17 00:00:00 2001 From: tobias Date: Sun, 19 May 2024 21:07:09 +0200 Subject: [PATCH] Add input base styles --- astro/src/global.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astro/src/global.css b/astro/src/global.css index b62cc89..33861ae 100644 --- a/astro/src/global.css +++ b/astro/src/global.css @@ -101,6 +101,10 @@ } select { - @apply bg-background border-primary border px-2 py-1 text-lg; + @apply bg-background border-primary border px-2 h-8 text-lg; + } + + input { + @apply bg-background border-primary border px-2 h-8 text-lg; } }