Skip to content

Commit

Permalink
fix: πŸ› if project title is one long word break it in mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Sep 15, 2023
1 parent e89b2e6 commit 602149d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/partials/project/[id]/ProjectHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ProjectHeader = ({ isResource }: { isResource?: boolean }) => {
<Stack vertical spacing="tight">
<BrBreadcrumb crumbs={crumbs} />
<ProjectTypeChip project={project} />
<Text as="h1" variant="heading2xl" id="project-title">
<Text as="h1" variant="heading2xl" id="project-title" breakWord>
{project.name}
</Text>
<p className="text-primary font-mono">
Expand Down

0 comments on commit 602149d

Please sign in to comment.