-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alert messages do not close on login page #9
Comments
Hi, Have You Found a solution for this? Can you share? I'm stuck and can't find a workaround. |
You need to add below CSS in app.css file .alert {
position: fixed;
left: 50%;
top: 120px;
transform: translate(-50%, -50%);
z-index: 99999;
} |
Thank You So Much! |
Thank you for pointing this out, my alert messages weren't showing properly without this. |
hi, I removed the default CSS lines related to alert messages and added the code @Abbasa5251 mentioned to app.css and it worked! |
@EXxZAM Very good, thank you. That is what I've done however it still does the same thing. It does however notice when my mouse is over the "X" as the pointer turns into a finger to click. (see attached images). Here is a sample of my current code in static/styles/app.css and main.html. If anyone has an idea of what else I could check please let me know. Thank you. |
@fallstonray |
It seems to be a browser issue. It works in Chrome, but not in Firefox as in my case |
The close button (x) does not close alert messages when on the login page.
Browser: Edge Version 92.0.902.78 (Official build) (64-bit)
The text was updated successfully, but these errors were encountered: