22 lines
272 B
CSS
22 lines
272 B
CSS
|
|
.page {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
min-height: 100vh;
|
||
|
|
background: var(--bg-body);
|
||
|
|
}
|
||
|
|
|
||
|
|
.card {
|
||
|
|
padding: 2rem;
|
||
|
|
text-align: center;
|
||
|
|
min-width: 320px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.heading {
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.backButton {
|
||
|
|
margin-top: 16px;
|
||
|
|
}
|