@livelybone/react-mobile-code-input
Version:
A module for code input, each char corresponds to one input box
35 lines (31 loc) • 627 B
CSS
.react-mobile-code-input {
display: block;
position: relative;
text-align: center;
box-sizing: border-box;
}
.react-mobile-code-input__char {
display: inline-block;
width: 36px;
height: 36px;
margin: 0 10vw 0 0;
line-height: 34px;
border: 1px solid #666;
border-radius: 3px;
vertical-align: middle;
box-sizing: border-box;
}
.react-mobile-code-input__char:last-of-type {
margin-right: 0;
}
.react-mobile-code-input__input {
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
box-sizing: border-box;
}
/*# sourceMappingURL=index.css.map */