@postxl/ui-components 1.2.2 → 1.3.0
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/index.d.ts +264 -191
- package/dist/index.js +459 -324
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/theme.css +10 -0
package/package.json
CHANGED
package/src/styles/theme.css
CHANGED
|
@@ -208,4 +208,14 @@
|
|
|
208
208
|
line-height: var(--text-lg--line-height);
|
|
209
209
|
font-weight: var(--font-weight-semibold);
|
|
210
210
|
}
|
|
211
|
+
|
|
212
|
+
/* Hide number input spin buttons when appearance-none is applied */
|
|
213
|
+
input[type='number'].appearance-none::-webkit-inner-spin-button,
|
|
214
|
+
input[type='number'].appearance-none::-webkit-outer-spin-button {
|
|
215
|
+
-webkit-appearance: none !important;
|
|
216
|
+
margin: 0 !important;
|
|
217
|
+
}
|
|
218
|
+
input[type='number'].appearance-none {
|
|
219
|
+
-moz-appearance: textfield !important;
|
|
220
|
+
}
|
|
211
221
|
}
|