Skip to content

Commit

Permalink
fix(popups): backdrop filter failing to appear during animation
Browse files Browse the repository at this point in the history
  • Loading branch information
SethBurkart123 committed Nov 29, 2024
1 parent 34b2501 commit 2ea8ada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SEQTA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export function OpenWhatsNewPopup() {
if (settingsState.animations) {
animate(
[popup, bkelement as HTMLElement],
{ scale: [0, 1], opacity: [0, 1] },
{ scale: [0, 1] },
{
type: 'spring',
stiffness: 220,
Expand Down Expand Up @@ -434,7 +434,7 @@ export function OpenAboutPage() {
if (settingsState.animations) {
animate(
[popup, bkelement as HTMLElement],
{ scale: [0, 1], opacity: [0, 1] },
{ scale: [0, 1] },
{
type: 'spring',
stiffness: 220,
Expand Down

0 comments on commit 2ea8ada

Please sign in to comment.