TimeInput: hide number input spin box on Firefox

This commit is contained in:
Elijah Duffy
2025-05-08 12:28:55 -07:00
parent 476122c6c4
commit 17f8c51ebd

View File

@@ -335,6 +335,7 @@
:global(.time-input) { :global(.time-input) {
@apply h-16 w-24 text-center text-xl; @apply h-16 w-24 text-center text-xl;
-moz-appearance: textfield;
&:focus::placeholder { &:focus::placeholder {
@apply text-transparent; @apply text-transparent;
@@ -342,7 +343,7 @@
&::-webkit-inner-spin-button, &::-webkit-inner-spin-button,
&::-webkit-outer-spin-button { &::-webkit-outer-spin-button {
@apply appearance-none; @apply m-0 appearance-none;
} }
} }