react-verification-code-input
react-verification-code-input copied to clipboard
How can I change the number fonts?
Hi, how can I set the font-family "Lato" to none (default) for numbers?
👍 a reusable react component should not contain hard-coded non-browser-safe fonts with style tags making them hard to override. Please remove.
I made it work by doing this:
.verification-code-input input[type='tel'] {
font-family: inherit;
}
And then add verification-code-input
as a className
attribute to it.
I made it work by doing this:
.verification-code-input input[type='tel'] { font-family: inherit; }
And then add
verification-code-input
as aclassName
attribute to it.
Clean solution, thanks