Skip to content

Commit

Permalink
Fixing spinner direction (should be clockwise) and removing duplicate…
Browse files Browse the repository at this point in the history
… animation @Keyframes spin
  • Loading branch information
carsso committed Nov 23, 2024
1 parent 1496542 commit 3063901
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/styles/videoosd.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,8 @@
margin-left: auto;
}

@keyframes spin {
100% {
transform: rotate(360deg);
}
}

.osdMediaStatus .animate {
animation: spin 4s linear infinite;
animation: spin-clockwise 4s linear infinite;
}

@media all and (max-width: 30em) {
Expand Down Expand Up @@ -236,7 +230,7 @@

.primary-icon.spin {
font-size: 76px !important;
animation: spin 2s linear infinite;
animation: spin-counterclockwise 2s linear infinite;
}

.secondary-icon {
Expand Down Expand Up @@ -326,8 +320,14 @@
}
}

@keyframes spin {
@keyframes spin-counterclockwise {
100% {
transform: rotate(-360deg);
}
}

@keyframes spin-clockwise {
100% {
transform: rotate(360deg);
}
}

0 comments on commit 3063901

Please sign in to comment.