Skip to content

Commit

Permalink
[@mantine/core] Indicator: Improve processing animation for lo-resolu…
Browse files Browse the repository at this point in the history
…tion monitors (#5682)

Co-authored-by: Matthias Feist <matthias@foodfacts.se>
  • Loading branch information
matthiasfeist and matthiasfeist-foodfacts committed Feb 1, 2024
1 parent 75f86cb commit ce9cacf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@keyframes processing {
0% {
opacity: 0.6;
box-shadow: 0 0 rem(0.5px) 0 var(--indicator-color);
box-shadow: 0 0 0 0 var(--indicator-color);
}

100% {
opacity: 0;
box-shadow: 0 0 rem(0.5px) rem(4.4px) var(--indicator-color);
box-shadow: 0 0 0 rem(8px) var(--indicator-color);
}
}

Expand Down

0 comments on commit ce9cacf

Please sign in to comment.