Skip to content

Commit

Permalink
[#230] Fix loading animation in new design
Browse files Browse the repository at this point in the history
Center the spinner animation inside the popup window.

closes #230
  • Loading branch information
klappradla committed Apr 30, 2020
1 parent e673903 commit fee4607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/common/popup/styles/_spinner.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.spinner {
margin: 4rem auto 0;
margin: 2rem auto 2rem;
width: 4rem;
text-align: center;
}
Expand Down Expand Up @@ -32,11 +32,11 @@
}

@keyframes spinner-bouncedelay {
0%, 80%, 100% {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
Expand Down

0 comments on commit fee4607

Please sign in to comment.