Skip to content

Commit

Permalink
Moved zoom link to bottom of circle item to match figma
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWearsHat committed Nov 1, 2024
1 parent 63c0ce2 commit 300e8d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/site/src/app/schedule/Assets/Circle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const EventCircle: React.FC<CircleProps> = ({
<div className={styles.textContainer} style={up ? { top: "-155px" } : {}}>
<h5 className={styles.title}>{title}</h5>
<p className={styles.location}>{location}</p>
<p className={styles.time}>{convertTime(startTime, endTime)}</p>
{virtual && (
<a
href={`${virtual}`}
Expand All @@ -69,7 +70,6 @@ const EventCircle: React.FC<CircleProps> = ({
<Image src={openNewWindow} alt="open" />
</a>
)}
<p className={styles.time}>{convertTime(startTime, endTime)}</p>
</div>
</div>
);
Expand Down

0 comments on commit 300e8d5

Please sign in to comment.