33 lines
636 B
CSS
33 lines
636 B
CSS
.passcode-wrap {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--btcpay-space-m);
|
|
width: 100%;
|
|
}
|
|
.passcode {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--btcpay-space-m);
|
|
max-width: 28rem;
|
|
width: 100%;
|
|
}
|
|
.dot {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border: 1px solid var(--btcpay-neutral-500);
|
|
border-radius: 50%;
|
|
background: transparent;
|
|
transition: background-color var(--btcpay-transition-duration-default);
|
|
}
|
|
.dot--filled {
|
|
background: var(--btcpay-neutral-500);
|
|
}
|
|
.keypad {
|
|
width: 100%;
|
|
max-width: 28rem;
|
|
}
|