Skip to content

Commit

Permalink
fix: clipping elements css
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Sep 19, 2024
1 parent 52fc529 commit a6b373c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/forge/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,9 @@ const IndexComponent = () => {
"You're free to use the space!",
].map((value, idx, array) => (
<TimelineItem key={value}>
<TimelineHeading className="whitespace-nowrap text-foreground">{value}</TimelineHeading>
<TimelineHeading className="flex items-center text-foreground overflow-visible text-ellipsis whitespace-normal">
{value}
</TimelineHeading>
<TimelineDot status="done" className="rounded-sm" />
{idx !== array.length - 1 && <TimelineLine done={true} className="min-h-4" />}
</TimelineItem>
Expand Down

0 comments on commit a6b373c

Please sign in to comment.