Forum Thread
Mini notifications in the way [+solve]
Forum-Index → Bug Reports → Resolved → Mini notifications in the way [+solve]#mini_notif_wrapper {
pointer-events: none;
}
#mini_notif_wrapper .mini_notif {
pointer-events: auto;
}
pointer-events: none;
}
#mini_notif_wrapper .mini_notif {
pointer-events: auto;
}
Another point I'd like to make is that they're fixed over the page, even when there's space to the side of it. Wouldn't it be better that they're as far left as they can be?
To achieve this remove the lines of the CSS that are commented out:
#mini_notif_wrapper {
position: fixed;
/* margin: auto; */
bottom: 8px;
left: 8px;
/* right: 0; */
/* width: 100%; */
max-width: 900px;
z-index: 20;
pointer-events: none;
}
position: fixed;
/* margin: auto; */
bottom: 8px;
left: 8px;
/* right: 0; */
/* width: 100%; */
max-width: 900px;
z-index: 20;
pointer-events: none;
}
This would be the result, notice that the Preview button is clickable.
If the screen is smaller, so it hasn't got the space on the side, the notifications will remain the way they're now.
It can be annoying that some button does not seem to work until you realize that all the way over to the left is a notification popup, with an invisible wall all the way to the right so nothing is clickable anymore.
More often than not, I want to continue doing the thing I was doing, and only later do things like putting pokemon away in my storage system.