23 lines
338 B
CSS
23 lines
338 B
CSS
.page {
|
|
position: relative;
|
|
flex: auto;
|
|
height: calc(100vh - 50px);
|
|
max-height: -webkit-fill-available;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.icon {
|
|
width: 96px;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.checkbox-container {
|
|
width: 80%;
|
|
margin: 64px auto 0;
|
|
} |