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
26 lines
481 B
Text
26 lines
481 B
Text
.error-boundary-alert {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: @ol-blue-gray-0;
|
|
padding: @line-height-computed / 2;
|
|
}
|
|
|
|
.error-boundary-container {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
.error-message {
|
|
align-items: center;
|
|
color: @neutral-90;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
}
|