mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
[web] Migrate notifications and error boundaries on the editor page GitOrigin-RevId: c195ecf0dd9e38ec8326c823174e559e1f192ce1
27 lines
481 B
Plaintext
27 lines
481 B
Plaintext
.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;
|
|
}
|
|
}
|