fix toast

This commit is contained in:
gru
2025-10-19 21:14:44 +02:00
parent 813d7d5099
commit ced8cbd92e
2 changed files with 22 additions and 2 deletions

View File

@@ -127,4 +127,24 @@ pre {
#global-loading.show {
display: block;
}
}
.toast-fixed-anchor {
position: fixed;
right: 0;
bottom: 0;
z-index: 2000;
padding: .75rem;
pointer-events: none;
}
.toast-fixed-anchor .toast-container {
display: flex;
flex-direction: column-reverse;
align-items: end;
gap: .5rem;
}
.toast-fixed-anchor .toast {
pointer-events: auto;
}