Skip to content

Commit

Permalink
style: Move sublabel
Browse files Browse the repository at this point in the history
  • Loading branch information
steezplusplus committed Sep 18, 2023
1 parent 47057aa commit fb7e38e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/_components/cards/music-card/music-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export function MusicCard(props: MusicCardProps) {
p-4 dark:bg-indigo-100/5
"
>
<h2 className="mb-1 self-end text-lg">{label}</h2>
<h3 className="self-end text-sm italic">{subLabel}</h3>
<h2 className="mb-2 self-end text-lg">{label}</h2>
<MusicPlayer songPath="/song.mp3" />
<h3 className="mt-1 self-start text-sm italic">{subLabel}</h3>
</div>
);
}

0 comments on commit fb7e38e

Please sign in to comment.