Skip to content
This repository was archived by the owner on Jan 3, 2025. It is now read-only.

Commit bbece88

Browse files
committed
fix schedule happening now with long event titles
1 parent e8bcbea commit bbece88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/schedule/happening-now.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ function HappeningNowCard(props: { event: Event }) {
3333
{extractLettersFromTitle(props.event.title)}
3434
</div>
3535
</div>
36-
<div className="w-fit mx-4 min-w-64 flex flex-col items-center justify-center px-4 ">
37-
<h3 className="text-nowrap text-2xl font-bold text-white">{props.event.title}</h3>
36+
<div className="w-fit mx-4 min-w-64 flex flex-col items-center justify-center px-4 ">
37+
<h3 className="description-box font-bold text-white text-xl">{props.event.title}</h3>
3838
<p className="text-nowrap">
3939
{props.event.location} {props.event.speaker != "" ? `• ${props.event.speaker}` : ""}{" "}
4040
</p>

0 commit comments

Comments
 (0)