My goal is to have a toast appear on the top-middle of the screen when an image is zoomed in, while all other normal toasts should display at their default position. I've been successful in showing the toast when zoomed in, but I'm having trouble positioning it correctly.
I attempted to adjust the "#toast-container" settings, however, this resulted in all toasts being placed in the same position on the screen.
#toast-container {
top: auto !important;
right: auto !important;
bottom: 10%;
left:3%;
}
Desired Outcome: Toast 1 should be at the top-middle of the screen, while toast 2 can be positioned either at the top-right or bottom of the screen.