mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
move break-word styling to the right place and add comments in code for later
This commit is contained in:
parent
b8dc80973a
commit
5c0eb1e6a6
@ -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 }) => ({
|
||||
|
@ -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%',
|
||||
}),
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user