move break-word styling to the right place and add comments in code for later

This commit is contained in:
domyen 2020-08-04 20:01:28 -04:00
parent b8dc80973a
commit 5c0eb1e6a6
2 changed files with 5 additions and 2 deletions

View File

@ -22,6 +22,7 @@ interface ArgSummaryProps {
const Text = styled.span(({ theme }) => ({
fontFamily: theme.typography.fonts.mono,
fontSize: theme.typography.size.s1,
wordBreak: 'break-word',
}));
const Expandable = styled.div<{}>(codeCommon, ({ theme }) => ({

View File

@ -48,16 +48,17 @@ export const TableWrapper = styled.table<{ compact?: boolean; inAddonPanel?: boo
...(compact
? null
: {
// Description column
width: '35%',
}),
},
'th:nth-of-type(3), td:nth-of-type(3)': {
'td:nth-of-type(3)': {
...(compact
? null
: {
// Defaults column
width: '15%',
wordBreak: 'break-all',
}),
},
@ -66,6 +67,7 @@ export const TableWrapper = styled.table<{ compact?: boolean; inAddonPanel?: boo
...(compact
? null
: {
// Controls column
width: '25%',
}),
},