mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 18:02:48 -05:00
27 lines
353 B
SCSS
27 lines
353 B
SCSS
|
.toast-container {
|
||
|
pointer-events: none;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 12px;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.toast-content {
|
||
|
pointer-events: auto;
|
||
|
}
|
||
|
|
||
|
.toast.showing {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.global-toasts {
|
||
|
position: fixed;
|
||
|
bottom: 12px;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%);
|
||
|
|
||
|
[role='alert'] {
|
||
|
z-index: 20;
|
||
|
}
|
||
|
}
|