forked from Transparency/kgroad-frontend2
33 lines
562 B
SCSS
33 lines
562 B
SCSS
.confirm-code {
|
|
width: 360px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
|
|
button {
|
|
padding: 10px 18px;
|
|
width: 100%;
|
|
height: 44px;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
background: rgb(54, 149, 216);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
line-height: 24px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.confirm-code-send-email {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
color: rgb(54, 149, 216);
|
|
}
|
|
|
|
@media screen and (max-width: 550px) {
|
|
.confirm-code {
|
|
width: 100%;
|
|
}
|
|
}
|