From e00b6267b2cca1694b4538b943b90864058093fe Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 17 Mar 2024 05:37:09 -0700 Subject: fix(css): file input text colour --- src/styles/input.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/input.css b/src/styles/input.css index 4bb77860..a18cce32 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -32,12 +32,17 @@ select { input[type='number'] { appearance: textfield; } + + input[type='file'] { + color: var(--base02); + } } input[type='text'], input[type='number'], input[type='date'], input[type='time'], +input[type='file'], button { padding: 0.25em 0.5em; } -- cgit v1.2.3