File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const Contributors = ({contributors = [], latestCommit}) => {
3232
3333 return (
3434 < >
35- < Box sx = { { display : 'flex' , alignItems : 'center' } } >
35+ < Box sx = { { display : 'flex' , alignItems : 'center' , flexWrap : 'wrap' } } >
3636 < Text sx = { { mr : 2 } } >
3737 { contributors . length } { pluralize ( 'contributor' , contributors . length ) }
3838 </ Text >
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export const UnorderedList = styled.ul`
180180 }
181181
182182 li {
183- word-break: break-all ;
183+ word-break: break-word ;
184184 }
185185
186186 li > p {
@@ -196,6 +196,7 @@ export const OrderedList = UnorderedList.withComponent('ol')
196196
197197export const Paragraph = styled . p `
198198 margin: 0 0 ${ themeGet ( 'space.3' ) } ;
199+ word-break: break-word;
199200`
200201
201202export const Table = styled . table `
You can’t perform that action at this time.
0 commit comments