fix(addon-docs): markdown tables right align support

This commit is contained in:
Fabien Rassinier 2020-06-23 21:50:21 +02:00
parent f39cc687c4
commit f4a429ae72

View File

@ -176,13 +176,11 @@ export const Table = styled.table<{}>(withReset, withMargin, ({ theme }) => ({
'& tr th': {
fontWeight: 'bold',
border: `1px solid ${theme.appBorderColor}`,
textAlign: 'left',
margin: 0,
padding: '6px 13px',
},
'& tr td': {
border: `1px solid ${theme.appBorderColor}`,
textAlign: 'left',
margin: 0,
padding: '6px 13px',
},