Skip to content

Commit 2d79c6c

Browse files
committed
fix(song): adjust line height on song card's author name overflow
1 parent 588919d commit 2d79c6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/frontend/src/modules/browse/components/SongCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const SongDataDisplay = ({ song }: { song: SongPreviewDtoType | null }) => {
4141
</div>
4242
<div className='flex flex-row justify-between items-center gap-4 px-4'>
4343
{/* Song author */}
44-
<p className='text-sm text-zinc-400 flex-1'>
44+
<p className='text-sm text-zinc-400 flex-1 text-pretty leading-tight'>
4545
{!song ? (
4646
<Skeleton />
4747
) : (

0 commit comments

Comments
 (0)