Skip to content

Commit

Permalink
fix: prevent long header titles from rendering over actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuddomack committed Oct 26, 2023
1 parent b28404f commit 4613df4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/core/components/Heading/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
font-family: var(--puck-font-stack);
font-weight: 700;
margin: 0;
word-break: break-word;
}

.Heading b {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/components/Puck/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export function Puck({
display: "grid",
padding: 16,
gridTemplateAreas: '"left middle right"',
gridTemplateColumns: "288px auto 288px",
gridTemplateColumns: "344px auto 344px",
gridTemplateRows: "auto",
}}
>
Expand Down

0 comments on commit 4613df4

Please sign in to comment.