Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/avatar-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function AvatarCard({ src, alt, className = "" }: AvatarCardProps
fill
priority
sizes="(min-width: 768px) 425px, 320px"
className="object-cover object-top"
className="object-cover object-top grayscale hover:grayscale-0 transition-[filter] duration-200"
/>
</div>
);
Expand Down
6 changes: 2 additions & 4 deletions app/components/listening-track-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ export default function ListeningTrackRow({
alt={`${title} album art`}
width={artSize}
height={artSize}
className={`${artClass} rounded-[3px] object-cover transition-[filter,box-shadow] duration-200 ${HOVER_RING} ${
live
? "listening-art-live"
: "grayscale-[18%] contrast-[0.98] opacity-[0.88] saturate-[0.92] dark:grayscale-[12%]"
className={`${artClass} rounded-[3px] object-cover grayscale group-hover/track:grayscale-0 transition-[filter,box-shadow] duration-200 ${HOVER_RING} ${
live ? "listening-art-live" : ""
}`}
/>
) : (
Expand Down
2 changes: 1 addition & 1 deletion app/music-for-life/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default async function PlaylistDetailPage({ params }: PageProps) {
alt={`${playlist.name} playlist cover`}
width={112}
height={112}
className="size-20 md:size-28 rounded-[4px] object-cover"
className="size-20 md:size-28 rounded-[4px] object-cover grayscale group-hover:grayscale-0 transition-[filter] duration-200"
/>
) : (
<div className="size-20 md:size-28 rounded-[4px] bg-zinc-200/90 dark:bg-zinc-700/80" />
Expand Down
2 changes: 1 addition & 1 deletion app/music-for-life/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default async function Playlists() {
alt={`${playlist.name} playlist cover`}
width={112}
height={112}
className="size-20 md:size-28 rounded-[4px] object-cover"
className="size-20 md:size-28 rounded-[4px] object-cover grayscale group-hover:grayscale-0 transition-[filter] duration-200"
/>
) : (
<div className="size-20 md:size-28 rounded-[4px] bg-zinc-200/90 dark:bg-zinc-700/80" />
Expand Down