Skip to content

Commit

Permalink
fix: styles
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola committed Sep 5, 2024
1 parent 29b9a4b commit 8815ab3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
align-items: center;
justify-content: center;
transition: background-color 0.1s;
flex-shrink: 0;
}

.playButton:hover {
Expand Down
4 changes: 2 additions & 2 deletions web/app/components/base/audio-gallery/AudioPlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ const AudioPlayer: React.FC<AudioPlayerProps> = ({ src }) => {
{isPlaying
? (
<svg viewBox="0 0 24 24" width="16" height="16">
<rect x="6" y="4" width="3" height="16"/>
<rect x="14" y="4" width="3" height="16"/>
<rect x="7" y="6" width="3" height="12" rx="1.5" ry="1.5"/>
<rect x="15" y="6" width="3" height="12" rx="1.5" ry="1.5"/>
</svg>
)
: (
Expand Down

0 comments on commit 8815ab3

Please sign in to comment.