Skip to content

Commit

Permalink
adjust margin
Browse files Browse the repository at this point in the history
  • Loading branch information
leehack committed Oct 28, 2024
1 parent 3d23335 commit 15ef293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/elements/ScheduleSessionCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const ScheduleSessionCard = ({ timeSlot, session, sessionIndex }) => {
<h5 className="text-xl mb-2 tracking-normal text-[#424242]">
{sessionDetails?.title || 'Session Title'}
</h5>
<div className="font-medium text-sm mb-8">{sessionDetails?.shortDescription || sessionDetails?.description}</div>
<div className="font-medium text-sm">{sessionDetails?.shortDescription || sessionDetails?.description}</div>
{/* Add the icon */}
</div>

Expand All @@ -54,7 +54,7 @@ export const ScheduleSessionCard = ({ timeSlot, session, sessionIndex }) => {
{timeSlot.icon === 'PiCoffee' &&
<PiCoffee className="w-28 h-28 text-[#e2e2e2] opacity-40" />}
</div>

{speakers?.length > 0 && <div className='mt-8'></div>}
<div className="flex flex-col gap-4">
{speakers?.map((speaker, speakerIndex) => (
<Link key={speakerIndex} href={`/speakers/${speaker.slug}`}>
Expand Down

0 comments on commit 15ef293

Please sign in to comment.