File tree 2 files changed +3
-2
lines changed
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}) => {
32
32
33
33
return (
34
34
< >
35
- < Box sx = { { display : 'flex' , alignItems : 'center' } } >
35
+ < Box sx = { { display : 'flex' , alignItems : 'center' , flexWrap : 'wrap' } } >
36
36
< Text sx = { { mr : 2 } } >
37
37
{ contributors . length } { pluralize ( 'contributor' , contributors . length ) }
38
38
</ Text >
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export const UnorderedList = styled.ul`
180
180
}
181
181
182
182
li {
183
- word-break: break-all ;
183
+ word-break: break-word ;
184
184
}
185
185
186
186
li > p {
@@ -196,6 +196,7 @@ export const OrderedList = UnorderedList.withComponent('ol')
196
196
197
197
export const Paragraph = styled . p `
198
198
margin: 0 0 ${ themeGet ( 'space.3' ) } ;
199
+ word-break: break-word;
199
200
`
200
201
201
202
export const Table = styled . table `
You can’t perform that action at this time.
0 commit comments