mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
23 lines
421 B
SCSS
23 lines
421 B
SCSS
|
.error-boundary-alert {
|
||
|
padding: var(--spacing-05);
|
||
|
}
|
||
|
|
||
|
.error-boundary-container {
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: var(--spacing-06);
|
||
|
position: absolute;
|
||
|
top: 40%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
|
||
|
.error-message {
|
||
|
align-items: center;
|
||
|
color: var(--content-primary);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: var(--spacing-02);
|
||
|
}
|
||
|
}
|