Skip to content

Commit

Permalink
fix(FEC-13829): Player v7 | Audio Player | Colors | Equalizer not inc…
Browse files Browse the repository at this point in the history
…luded in tone #1
  • Loading branch information
JonathanTGold committed Apr 16, 2024
1 parent af26cb1 commit fc564b8
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/components/audio-icon/audio-icon.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import '~@playkit-js/playkit-js-ui';

.audio-icon {
align-items: end;
display: flex;
Expand All @@ -14,12 +16,12 @@
margin-left: 1.5px;
}
}

&.active {
.box1 {
animation-name: wave1;
}

.box2 {
animation-name: wave2;
}
Expand All @@ -28,9 +30,9 @@
animation-name: wave3;
}
}

.box {
background: white;
background: $tone-1-color;
height: 2px;
width: 2px;
border-radius: 1px;
Expand All @@ -40,7 +42,7 @@
animation-timing-function: ease-in-out;
animation-direction: alternate-reverse;
}

.box1, .box2, .box3 {
@extend .box;
}
Expand All @@ -55,9 +57,9 @@
60% {height: 600%;}
70% {height: 400%;}
80% {height: 600%;}
90% {height: 100%;}
90% {height: 100%;}
}

@keyframes wave2 {
0% {height: 100%;}
10% {height: 300%;}
Expand All @@ -70,7 +72,7 @@
80% {height: 400%;}
90% {height: 200%;}
}

@keyframes wave3 {
0% {height: 100%;}
10% {height: 200%;}
Expand Down

0 comments on commit fc564b8

Please sign in to comment.