Incorporating the react-select component into my project has been a great addition. However, I encountered an issue when testing in the Windows/Chrome browser - spin buttons started showing up unexpectedly. https://i.sstatic.net/DiZ0W.png
After conducting some research, I tried implementing the following styles in the root css of my application to hide the spin buttons, but unfortunately, it didn't work as expected.
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type='number'] {
-moz-appearance: textfield;
}
I am now seeking guidance on how to effectively hide these spin buttons?