58 lines
850 B
SCSS
58 lines
850 B
SCSS
.page {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.description {
|
|
font-style: 14px;
|
|
line-height: 125%;
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.biometric {
|
|
text-align: center;
|
|
line-height: 125%;
|
|
margin-top: 20px;
|
|
|
|
& > svg {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.labelUpload {
|
|
position: relative;
|
|
margin-top: 6px;
|
|
font-size: 21px;
|
|
line-height: 125%;
|
|
text-align: center;
|
|
color: #17699E;
|
|
font-weight: 500;
|
|
font-family: SF Pro Text;
|
|
cursor: pointer;
|
|
padding: 16px;
|
|
}
|
|
|
|
.loaderContainer {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.error {
|
|
color: #FF0000;
|
|
font-size: 14px;
|
|
} |