diff options
Diffstat (limited to 'src/styles')
| -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; +} |