diff options
| author | Fuwn <[email protected]> | 2024-02-01 08:27:23 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-01 08:27:23 -0800 |
| commit | 86011739f10578442d1464745115d831d629d799 (patch) | |
| tree | 0322731f6ac4b179b27c5ef2b2f81b12be8c1220 /src/styles/input.css | |
| parent | feat(user): remove title from avatar (diff) | |
| download | due.moe-86011739f10578442d1464745115d831d629d799.tar.xz due.moe-86011739f10578442d1464745115d831d629d799.zip | |
feat(input): prettier inputs
Diffstat (limited to 'src/styles/input.css')
| -rw-r--r-- | src/styles/input.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/styles/input.css b/src/styles/input.css index 381f2ebe..fb7be86f 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -21,6 +21,16 @@ select { background-color: var(--base07); /* color: var(--base05); */ } + + input[type='number']::-webkit-inner-spin-button, + input[type='number']::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; + } + + input[type='number'] { + appearance: textfield; + } } input[type='text'], @@ -139,3 +149,7 @@ button:disabled:active { .button-action { background-color: var(--base0E); } + +.no-shadow { + box-shadow: none; +} |