Skip to content

Commit 84cfb7e

Browse files
authored
Merge pull request #97 from alistairgray42/fix-webscrobbler-classes
fix: CSS classes for Web Scrobbler extension
2 parents 2e789de + 111deab commit 84cfb7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Player.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ const Player = ({ artistSlugsToName }: Props) => {
9393
onClick={() => player.togglePlayPause()}
9494
>
9595
{playback.activeTrack.isPaused ? (
96-
<PlayIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
96+
<PlayIcon size={20} className="fas fa fa-play fill-foreground-muted active:fill-gray-800" />
9797
) : (
98-
<PauseIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
98+
<PauseIcon size={20} className="fas fa fa-pause fill-foreground-muted active:fill-gray-800" />
9999
)}
100100
</Flex>
101101
)}

0 commit comments

Comments
 (0)