diff options
| author | Fuwn <[email protected]> | 2024-04-02 22:28:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-02 22:28:14 -0700 |
| commit | 9ab94f20c200f7e79297b9cbb7d654b8fba67115 (patch) | |
| tree | 5d0b649fc89c24154acd44cde5944acb812b371b /src/styles/input.css | |
| parent | feat(layout): announcement feature (diff) | |
| download | due.moe-9ab94f20c200f7e79297b9cbb7d654b8fba67115.tar.xz due.moe-9ab94f20c200f7e79297b9cbb7d654b8fba67115.zip | |
feat(badges): custom css
Diffstat (limited to 'src/styles/input.css')
| -rw-r--r-- | src/styles/input.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/styles/input.css b/src/styles/input.css index a18cce32..df6603c2 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -1,5 +1,6 @@ input, -select { +select, +textarea { cursor: pointer; position: relative; background-color: var(--base01); @@ -18,7 +19,8 @@ select { @media (prefers-color-scheme: dark) { input, - select { + select, + textarea { background-color: var(--base07); /* color: var(--base05); */ } |