Skip to content

Commit

Permalink
Prevent content overflow in regform card
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 committed May 22, 2024
1 parent 0011c93 commit 9efa3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/event/EventPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function EventPageContent({
>
<div className="flex flex-1 items-center">
<div className="flex min-w-0 flex-col gap-1">
<Typography variant="body1" className="overflow-hidden text-ellipsis whitespace-nowrap">
<Typography variant="body1" className="text-wrap text-left">
{regform.title}
</Typography>
{regform.isOpen && (
Expand Down

0 comments on commit 9efa3c9

Please sign in to comment.