diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-17 19:04:55 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-17 19:04:55 +0530 |
commit | ee77e57189a6b0375e840b386754973a376dc089 (patch) | |
tree | eb5868219a01c68acb6ae996d99629020ef00e89 /src/components/Form/Form.css | |
parent | 444a8147f59df78ebf14222edcebf944226b533e (diff) |
added a way to see the total cost and number of items in ItemsDisplay
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; |