react-numeric-input icon indicating copy to clipboard operation
react-numeric-input copied to clipboard

how to remove paddingLeft:px

Open omerbrandis opened this issue 1 month ago • 0 comments

hello,

I'm unable to remove 4px padding on the left side which is showing up in both chrome and firefox chrome shows its derived from element.style, firefox shows its derived from this.style.

here's my code, I seem to be unable to style it out


<NumericInput min={30} max={100} size={3} value={...} onChange={...}   maxLength={3}
 	style={{        paddingLeft:"0 !important;",
			    btnUp: {display:"none"},
			   btnDown: {display:"none"},
 			   input: { color: 'white',fontSize:"25px",backgroundColor:"black",paddingRight:"0",paddingLeft:"0 !important;",textAlign:"center"}, 
                           'input:not(.form-control)': {border:"none",borderRadius:"15px"},
              }}
      />

omerbrandis avatar Jul 04 '24 09:07 omerbrandis