Skip to content

Commit

Permalink
fix: fixed animation transform direction in global styles when animat…
Browse files Browse the repository at this point in the history
…ionOnClose is ``swipe``
  • Loading branch information
pheralb committed Jan 28, 2025
1 parent 1450965 commit 8ab8cf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@

@keyframes slide-top-exit {
0% {
opacity: 1; /* Cambia de 0 a 1 */
opacity: 1;
transform: translateY(0);
}
100% {
Expand Down Expand Up @@ -319,7 +319,7 @@
}
100% {
opacity: 0;
transform: translateY(100%);
transform: translateY(-100%);
}
}

Expand Down

0 comments on commit 8ab8cf3

Please sign in to comment.