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 t
input: { '&::-webkit-outer-spin-button, &::-webkit-inner-spin-button': { '-webkit-appearance': 'none', '-moz-appearance': 'none', 'margin': 0 }, '&[type=number]': { '-webkit-appearance': 'textfield', '-moz-appearance': 'textfield' } }
This should work.