We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f3fb56 commit 07af71fCopy full SHA for 07af71f
src/components/graph/vueWidgets/WidgetSlider.vue
@@ -18,7 +18,8 @@
18
:min="widget.options?.min"
19
:max="widget.options?.max"
20
:step="widget.options?.step"
21
- class="w-[6em] text-center text-xs"
+ class="w-[4em] text-center text-xs px-0"
22
+ size="small"
23
@input="handleInputChange"
24
/>
25
</div>
@@ -71,3 +72,17 @@ const handleInputChange = (event: Event) => {
71
72
}
73
74
</script>
75
+
76
+<style scoped>
77
+/* Remove number input spinners */
78
+:deep(input[type='number']::-webkit-inner-spin-button),
79
+:deep(input[type='number']::-webkit-outer-spin-button) {
80
+ -webkit-appearance: none;
81
+ margin: 0;
82
+}
83
84
+:deep(input[type='number']) {
85
+ -moz-appearance: textfield;
86
+ appearance: textfield;
87
88
+</style>
0 commit comments