Skip to content

Commit 470b4d5

Browse files
committed
fix ui track
1 parent 44737cb commit 470b4d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/session/SessionTracks.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface SessionTracksProps {
1515
const SessionTracks: React.FC<SessionTracksProps> = ({sessions, category, currentSession}) => {
1616
const tracks = sessions.filter(session => session.category === category && session.id !== currentSession.id);
1717
return (
18-
<Card className="py-8 px-6 flex flex-col gap-8">
18+
<Card className="py-8 px-6 flex flex-col gap-6 md:gap-8">
1919
<Badge variant="alternative" className="flex gap-2"><Speech/> Charlas de {category}</Badge>
2020
<div className="grid grid-cols-[repeat(auto-fit,minmax(300px,1fr))] gap-6 w-full h-full">
2121
{
@@ -26,7 +26,7 @@ const SessionTracks: React.FC<SessionTracksProps> = ({sessions, category, curren
2626
<span aria-label="a">-</span>
2727
<time>{formatTiemstamp(session.endsAt)}</time>
2828
</h3>
29-
<CardCharla className="m-0 min-h-[318px]" session={session} room={null} />
29+
<CardCharla className="m-0 w-full min-h-[318px]" session={session} room={null} />
3030
</article>
3131
))
3232
}

0 commit comments

Comments
 (0)