From ef78d439be6890ade4d2dda08d3617e15c2ad3ae Mon Sep 17 00:00:00 2001 From: Greg Newman Date: Fri, 16 Dec 2022 10:18:54 -0500 Subject: [PATCH] :art: styles for inputs --- frontend/styles.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/styles.css b/frontend/styles.css index 2c511081..55c259e2 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -35,4 +35,10 @@ textarea { @apply w-full rounded bg-charcoal border border-slate; } + input[type=checkbox] { + @apply mr-3 rounded bg-charcoal border border-slate text-orange; + } + input[type=file] { + @apply block w-full px-3 py-1 text-base font-normal text-orange bg-clip-padding border border-solid border-slate rounded transition ease-in-out my-2; + } }