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.scss | |
parent | 444a8147f59df78ebf14222edcebf944226b533e (diff) |
added a way to see the total cost and number of items in ItemsDisplay
Diffstat (limited to 'src/components/Form/Form.scss')
-rw-r--r-- | src/components/Form/Form.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/Form/Form.scss b/src/components/Form/Form.scss index 74a5252..b11c9ab 100644 --- a/src/components/Form/Form.scss +++ b/src/components/Form/Form.scss @@ -61,6 +61,19 @@ 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; |