vlad-ignatov / react-numeric-input

Numeric input component for react
MIT License
280 stars 104 forks source link

hide spinners? #108

Closed JeffML closed 5 years ago

JeffML commented 5 years ago

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).

JeffML commented 5 years ago

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.