Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/page-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Contributors = ({contributors = [], latestCommit}) => {

return (
<>
<Box sx={{display: 'flex', alignItems: 'center'}}>
<Box sx={{display: 'flex', alignItems: 'center', flexWrap: 'wrap'}}>
<Text sx={{mr: 2}}>
{contributors.length} {pluralize('contributor', contributors.length)}
</Text>
Expand Down
3 changes: 2 additions & 1 deletion src/mdx/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export const UnorderedList = styled.ul`
}

li {
word-break: break-all;
word-break: break-word;
}

li > p {
Expand All @@ -196,6 +196,7 @@ export const OrderedList = UnorderedList.withComponent('ol')

export const Paragraph = styled.p`
margin: 0 0 ${themeGet('space.3')};
word-break: break-word;
`

export const Table = styled.table`
Expand Down