aboutsummaryrefslogtreecommitdiff
path: root/src/components/pickers/scss/item-picker.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-16 19:36:22 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-16 19:36:22 +0530
commitb1b874ba771d8dc78d6b17c320ca9993b25d93a1 (patch)
tree03807df5b991736a6fd4e83ae3d31c5a045db448 /src/components/pickers/scss/item-picker.scss
parent1b3702b241f02ab16c3b5366acb47cefbf089521 (diff)
Items can now strictly have whole number quantities
Diffstat (limited to 'src/components/pickers/scss/item-picker.scss')
-rw-r--r--src/components/pickers/scss/item-picker.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/pickers/scss/item-picker.scss b/src/components/pickers/scss/item-picker.scss
index 63ddbcf..394782e 100644
--- a/src/components/pickers/scss/item-picker.scss
+++ b/src/components/pickers/scss/item-picker.scss
@@ -56,6 +56,10 @@
input { width: 7rem; }
}
+ input {
+ transition: border 0.2s;
+ }
+
input[type=number] {
-moz-appearance: textfield;
width: 7rem;
@@ -76,7 +80,7 @@
border: 1px solid $primaryAccentColor;
color: $fgColor;
border-radius: 4px;
- transition: background-color 0.4s, color 0.4s;
+ transition: background-color 0.4s, color 0.4s, border 0.4s;
}
input[type=button]:hover, input[type=submit]:hover {