benivo-ui-library 1.9.66 → 1.9.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,6 +14,12 @@
14
14
  border-color 150ms ease,
15
15
  box-shadow 150ms ease;
16
16
 
17
+ .currency-input-status-icon.error {
18
+ &:before {
19
+ color: var(--error-main);
20
+ font-size: 14px;
21
+ }
22
+ }
17
23
  &:hover:not(.disabled) {
18
24
  border-color: var(--border-300, var(--border-200));
19
25
  }
@@ -75,6 +81,17 @@
75
81
  &::placeholder {
76
82
  color: var(--text-300);
77
83
  }
84
+ // Hide number input spinner arrows
85
+ &::-webkit-outer-spin-button,
86
+ &::-webkit-inner-spin-button {
87
+ -webkit-appearance: none;
88
+ margin: 0;
89
+ }
90
+
91
+ &[type='number'] {
92
+ -moz-appearance: textfield;
93
+ appearance: textfield;
94
+ }
78
95
  }
79
96
 
80
97
  .currency-input-status-icon {