Skip to content

Commit

Permalink
Don't make transparent flash div prevent clickthroughs
Browse files Browse the repository at this point in the history
  • Loading branch information
northeastprince authored Nov 12, 2023
1 parent 084b4ae commit 7b0ff87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/assets/stylesheets/components/_flash.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
width: 100%;
display: flex;
justify-content: center;
pointer-events: none;
}

.flash-notice__content {
Expand All @@ -14,5 +15,6 @@
display: flex;
align-items: center;
color: gainsboro;
backdrop-filter: blur(3px) contrast(0.5)
backdrop-filter: blur(3px) contrast(0.5);
pointer-events: auto;
}

0 comments on commit 7b0ff87

Please sign in to comment.