Skip to content

Commit

Permalink
fix(ui): Adjust toast notification position and z-index for better vi…
Browse files Browse the repository at this point in the history
…sibility above footer
  • Loading branch information
CarlKho-Minerva committed Nov 3, 2024
1 parent 3f2c294 commit f9dc670
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified app/medieval_todos.db
Binary file not shown.
6 changes: 3 additions & 3 deletions app/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,9 @@ input[type="email"] {
/* Toast Notifications */
.toast-container {
position: fixed;
bottom: 20px;
bottom: 70px; /* Increased from 20px to appear above footer */
right: 20px;
z-index: 9999;
z-index: 9999; /* Make sure it's higher than footer's z-index */
display: flex;
flex-direction: column;
gap: 10px;
Expand Down Expand Up @@ -841,7 +841,7 @@ input[type="email"] {
backdrop-filter: blur(64px);
-webkit-backdrop-filter: blur(64px);
background: rgba(0, 0, 0, 0.1);
z-index: 10;
z-index: 100; /* Lower than toast container */
}

.footer a {
Expand Down

0 comments on commit f9dc670

Please sign in to comment.