react-custom-otp-input
Version:
A Reusable react custom otp (One-Time Password) input
24 lines • 423 B
CSS
input {
border: 1px solid #e3e1e7;
width: 60px;
height: 60px;
border-radius: 10px;
color: #0b0935;
margin-right: 0;
font-size: 25px;
}
@media only screen and (max-width: 576px) {
input {
width: 42px ;
height: 42px ;
}
}
@media only screen and (max-width: 400px) {
input {
width: 35px ;
height: 35px ;
}
}
input:focus-visible {
outline: none;
}