Hello,
First of all, have a look on this
tutorial
to learn how to add custom css.
And second, your issue come from these css commands, have a look on my screenshot :
Now in order to answer your question, you can add this kind of commands :
// For ALL screen size
.YOUR_REQUIRED_CONTEXT_HTML input[type="number"] {
min-width: XXpx !important;
}
// For SMALL screen size (here: 600 px width)
@media only screen and (max-width: 600px) {
.YOUR_REQUIRED_CONTEXT_HTML input[type="number"] {
min-width: YYpx !important;
}
}
OR.YOUR_REQUIRED_CONTEXT_HTML input[type="number"] {
padding: 2px 5px !important;
}
The "
.YOUR_REQUIRED_CONTEXT_HTML" is your context in order to apply your new command when required.
Note : the "
!important" is to be sure to prioritize your custom commands over the unwanted command.
Hope this will help you to achieved your needs.
Regards