overleaf/services/web/frontend/stylesheets/app/editor/toast.less
Mathias Jakobsen cb72799fff [web] Add toast notifications to editor (#21567)
GitOrigin-RevId: 7f7ab83d4615f564c0e79bc2a05ca6cb9e5239fd
2024-11-11 09:05:12 +00:00

22 lines
319 B
Text

.toast-container {
pointer-events: none;
display: flex;
flex-direction: column;
gap: 12px;
justify-content: space-between;
}
.toast-content {
pointer-events: auto;
}
.global-toasts {
position: fixed;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
[role='alert'] {
z-index: 20;
}
}