We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42eb6c2 commit eb1c7c2Copy full SHA for eb1c7c2
src/index.css
@@ -18,15 +18,19 @@
18
font-weight: 800;
19
line-height: var(--itemHeight);
20
text-align: center;
21
+ border: 0;
22
}
23
24
.ReactVerificationCode__item {
25
+ --boxShadowColor: #ccc;
26
+ --boxShadowSize: 1px;
27
+ box-shadow: inset 0 0 0 var(--boxShadowSize) var(--boxShadowColor);
28
transition: box-shadow 0.2s ease-out;
- box-shadow: 0 0 0 1px inset #ccc;
29
30
31
.ReactVerificationCode__item.is-active {
- box-shadow: 0 0 0 2px inset #888;
32
+ --boxShadowColor: #888;
33
+ --boxShadowSize: 2px;
34
35
36
.ReactVerificationCode__input {
0 commit comments