25 lines
392 B
CSS
25 lines
392 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: var(--max-width-content);
|
|
margin: 0 auto;
|
|
padding: var(--Space-x5) 0;
|
|
gap: var(--Space-x2);
|
|
|
|
min-height: 50dvh;
|
|
text-align: center;
|
|
text-wrap: beautiful;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.digest {
|
|
text-align: right;
|
|
}
|
|
|
|
.errorDetails {
|
|
text-align: left;
|
|
margin-top: var(--Space-x5);
|
|
}
|