Skip to content

Commit

Permalink
Make credits keep blocks of text together
Browse files Browse the repository at this point in the history
  • Loading branch information
syenko committed Nov 13, 2024
1 parent 2c416c0 commit 5f99c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/puzzlehunt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function Credits({ credits }: { credits: { [id: string]: string[] } }) {
return (
<CreditsWrapper>
{Object.entries(credits).map(([key, value]) => (
<div key={key}>
<div style={{ display: 'inline-block', width: '100%' }} key={key}>
<h2>{key}</h2>
<Paragraph>
{value.map((person, index) => (
Expand Down

0 comments on commit 5f99c60

Please sign in to comment.