diff options
| author | Fuwn <[email protected]> | 2024-02-11 03:58:14 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-11 03:58:14 -0800 |
| commit | b3454068e621d7cf098cdee0a058537ca656f903 (patch) | |
| tree | 596b6332769ccfaa7a4c2cce6a7569a58719c9b4 /src/styles/input.css | |
| parent | feat(tools): use error-style not found (diff) | |
| download | due.moe-b3454068e621d7cf098cdee0a058537ca656f903.tar.xz due.moe-b3454068e621d7cf098cdee0a058537ca656f903.zip | |
feat(css): tamer input shadows
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 fb7be86f..4bb77860 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -12,7 +12,8 @@ select { transform: translateY(0.175em); place-content: center; transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; - box-shadow: 0 4px 30px var(--base01); + /* box-shadow: 0 4px 30px var(--base01); */ + box-shadow: rgba(0, 0, 11, 0.1) 0px 7px 29px 0px; } @media (prefers-color-scheme: dark) { @@ -85,7 +86,8 @@ button { border: none; border-radius: 4px; transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; - box-shadow: 0 4px 30px var(--base01); + /* box-shadow: 0 4px 30px var(--base01); */ + box-shadow: rgba(0, 0, 11, 0.1) 0px 7px 29px 0px; } button:hover { |