Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix title and description allignment for mobile screen resolved close… #9

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
4 changes: 3 additions & 1 deletion src/components/TrackCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const TrackCard = (props) => {
/>
</div>
<div className="space-y-1 text-sm mt-2.5 transition-all">
<div className="flex items-center gap-3">
<div className="flex items-center gap-3 ml-16 sm:ml-0">
<h3
className={`font-medium leading-none ${
props.trackPlaying == props.id && props.playingStatus
Expand All @@ -61,7 +61,9 @@ const TrackCard = (props) => {
} transition-all duration-200 invert accent-green-900`}
/>
</div>
<div className="flex items-center gap-3 ml-16 sm:ml-0">
<p className="text-xs text-muted-foreground">{props.desc}</p>
</div>
</div>
</div>
</>
Expand Down