34 lines
462 B
CSS
34 lines
462 B
CSS
.page {
|
|
position: relative;
|
|
flex: auto;
|
|
height: calc(100vh - 50px);
|
|
max-height: -webkit-fill-available;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.icon {
|
|
width: 96px;
|
|
height: 96px;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.buttons-container {
|
|
width: 100%;
|
|
margin: 64px auto 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 13px;
|
|
}
|
|
|
|
.button {
|
|
white-space: pre;
|
|
cursor: pointer;
|
|
}
|