Skip to content

Commit

Permalink
Fix blur on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jul 11, 2024
1 parent 231cc22 commit 97fe23e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,15 +207,18 @@ body.loaded {
visibility: visible;
background-color: #00000088;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
transition: visibility 0s,
background-color var(--animation),
backdrop-filter var(--animation);
backdrop-filter var(--animation),
-webkit-backdrop-filter var(--animation);
}

#overlay:not(.show) {
transition: visibility var(--animation),
background-color var(--animation),
backdrop-filter var(--animation);
backdrop-filter var(--animation),
-webkit-backdrop-filter var(--animation);
}
}

Expand Down

0 comments on commit 97fe23e

Please sign in to comment.