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