Skip to content

Commit

Permalink
fix(fluent): add missing ripple styles
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow committed Jan 19, 2024
1 parent c675267 commit 69009ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fluent/scss/ripple/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@

@keyframes ripple {
0% {
transform: scale(0);
transform: translate(-50%, -50%) scale(0);
}
20% {
transform: scale(1);
transform: translate(-50%, -50%) scale(1);
}
100% {
opacity: 0;
transform: scale(1);
transform: translate(-50%, -50%) scale(1);
}
}

Expand Down

0 comments on commit 69009ad

Please sign in to comment.