Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jcraigk committed Nov 4, 2024
1 parent 5d73147 commit fa6aee8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/javascript/components/controls/Player.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Player = ({ activePlaylist, activeTrack, setActiveTrack, audioRef, customP
album: `${formatDate(activeTrack.show_date)} - ${activeTrack.venue_name}`,
artwork: [
{
src: activeTrack.show_album_cover_url,
src: activeTrack.show_cover_art_urls.large,
sizes: '1024x1024',
type: 'image/png',
}
Expand Down
4 changes: 2 additions & 2 deletions app/javascript/stylesheets/content.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ main {
background-repeat: no-repeat;

&.focus {
border-left: 5px solid $highlight-blue;
border-bottom: 1px solid $highlight-blue;
}

&.active-item {
Expand Down Expand Up @@ -496,7 +496,7 @@ main {
background-color: $highlight-blue;
}
50% {
background-color: $bg-gray;
background-color: rgba(255, 255, 255, 0.8);
}
100% {
background-color: $highlight-blue;
Expand Down

0 comments on commit fa6aee8

Please sign in to comment.