vlad-ignatov/react-numeric-input

hide spinners?

Closed this issue · 1 comments

It would be nice to have the option to hide those obnoxious spinners. Since they are not the webkit spinners, I am not able to turn them off through CSS (so far).

Okay, I figured out an awkward way to do this:

span.react-numeric-input input {
	text-align: right;
	padding-right: 0ex !important;
}
span.react-numeric-input b {
	display: none;
}

Should be simpler than this, I think.