astrum-ui 0.1.9 → 0.1.10
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.
- package/dist/Input/Input.css +11 -1
- package/package.json +1 -1
package/dist/Input/Input.css
CHANGED
|
@@ -158,7 +158,6 @@
|
|
|
158
158
|
.astrum-input__field {
|
|
159
159
|
box-sizing: border-box;
|
|
160
160
|
flex: 1;
|
|
161
|
-
min-width: 301px;
|
|
162
161
|
width: 100%;
|
|
163
162
|
height: 54px;
|
|
164
163
|
padding: 16px 8px 16px 24px;
|
|
@@ -177,6 +176,17 @@
|
|
|
177
176
|
-webkit-appearance: none;
|
|
178
177
|
}
|
|
179
178
|
|
|
179
|
+
.astrum-input__field[type="number"]::-webkit-outer-spin-button,
|
|
180
|
+
.astrum-input__field[type="number"]::-webkit-inner-spin-button {
|
|
181
|
+
-webkit-appearance: none;
|
|
182
|
+
margin: 0;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.astrum-input__field[type="number"] {
|
|
186
|
+
appearance: textfield;
|
|
187
|
+
-moz-appearance: textfield;
|
|
188
|
+
}
|
|
189
|
+
|
|
180
190
|
.astrum-input--s .astrum-input__field {
|
|
181
191
|
height: 43px;
|
|
182
192
|
padding: 12px 8px 12px 20px;
|