diff options
| author | Fuwn <[email protected]> | 2024-03-17 05:37:09 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-17 05:37:09 -0700 |
| commit | e00b6267b2cca1694b4538b943b90864058093fe (patch) | |
| tree | f8cd52c65ff63a6361c1b0c314924bbbd1226512 /src | |
| parent | feat(hayai): whole description as bionic (diff) | |
| download | due.moe-e00b6267b2cca1694b4538b943b90864058093fe.tar.xz due.moe-e00b6267b2cca1694b4538b943b90864058093fe.zip | |
fix(css): file input text colour
Diffstat (limited to 'src')
| -rw-r--r-- | src/styles/input.css | 5 |
1 files changed, 5 insertions, 0 deletions
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; } |