mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
5b6bbcb73c
[web] Migrate notifications and error boundaries on the editor page GitOrigin-RevId: c195ecf0dd9e38ec8326c823174e559e1f192ce1
22 lines
421 B
SCSS
22 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);
|
|
}
|
|
}
|