I've got problem with converting CSS code for hiding spin box of number input for JSS. My question is how to appropriately convert this code that it will match JSS?
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}