@optifye/dashboard-core 6.10.13 → 6.10.14
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.css +141 -33
- package/dist/index.d.mts +67 -2
- package/dist/index.d.ts +67 -2
- package/dist/index.js +1722 -1082
- package/dist/index.mjs +1726 -1087
- package/global.css +12 -1
- package/package.json +1 -1
package/global.css
CHANGED
|
@@ -110,6 +110,17 @@ input[type="range"]:active::-moz-range-thumb {
|
|
|
110
110
|
}
|
|
111
111
|
/* Touch Optimizations omitted for brevity (identical to app) */
|
|
112
112
|
|
|
113
|
+
/* Hide number input spinners where needed */
|
|
114
|
+
.no-spinner::-webkit-outer-spin-button,
|
|
115
|
+
.no-spinner::-webkit-inner-spin-button {
|
|
116
|
+
-webkit-appearance: none;
|
|
117
|
+
margin: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.no-spinner {
|
|
121
|
+
-moz-appearance: textfield;
|
|
122
|
+
}
|
|
123
|
+
|
|
113
124
|
/* Tailwind root vars & base layer for radius etc. */
|
|
114
125
|
@layer base {
|
|
115
126
|
:root {
|
|
@@ -281,4 +292,4 @@ input[type="range"]:active::-moz-range-thumb {
|
|
|
281
292
|
max-height: 100% !important;
|
|
282
293
|
object-fit: contain !important;
|
|
283
294
|
object-position: center center !important;
|
|
284
|
-
}
|
|
295
|
+
}
|