diff options
Diffstat (limited to 'src/components/Form/Form.css')
-rw-r--r-- | src/components/Form/Form.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Form/Form.css b/src/components/Form/Form.css index 9d46f62..cf9bc60 100644 --- a/src/components/Form/Form.css +++ b/src/components/Form/Form.css @@ -64,6 +64,17 @@ label { scrollbar-width: none; /* Firefox */ } +/* hide arrows in numericInputs */ +/* Chrome, Safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; } + +/* Firefox */ +input[type=number] { + -moz-appearance: textfield; } + .addNewItemForm label { display: flex; justify-content: space-between; |