fix title alignment on mobile player

This commit is contained in:
jeffvli
2025-11-19 19:33:51 -08:00
parent bbaf305129
commit f2680bb1de
@@ -39,7 +39,12 @@ export const MobileFullscreenPlayerMetadata = memo(
return (
<div className={styles.metadataContainer}>
<div className={styles.titleRow}>
<TextTitle className={PlaybackSelectors.songTitle} fw={700} order={2}>
<TextTitle
className={PlaybackSelectors.songTitle}
fw={700}
order={2}
ta="center"
>
{title || '—'}
</TextTitle>
</div>