hensei-web/components/ErrorSection/index.scss
Justin Edmund 4916660027 Add ErrorSection component
This lets us render errors gracefully
2023-01-28 16:28:23 -08:00

22 lines
367 B
SCSS

section.Error {
align-items: center;
display: flex;
flex-direction: column;
gap: $unit;
margin: 0 auto;
max-width: 50vw;
justify-content: center;
height: 60vh;
text-align: center;
.Code {
color: var(--text-secondary);
font-size: $font-tiny;
font-weight: $bold;
}
.Button {
margin-top: $unit-2x;
width: fit-content;
}
}