mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:51:05 +08:00
CSS fixes to allow long text to wrap, while setting a min-width to keep short text from wrapping
This commit is contained in:
parent
e9ffe87cd8
commit
a11b2a21e1
@ -30,10 +30,11 @@ const Summary = styled.div<{ isExpanded?: boolean }>(({ isExpanded }) => ({
|
||||
flexWrap: 'wrap',
|
||||
alignItems: 'flex-start',
|
||||
marginBottom: '-4px',
|
||||
minWidth: 100,
|
||||
}));
|
||||
|
||||
const Text = styled.span<{}>(codeCommon, ({ theme }) => ({
|
||||
flex: 0,
|
||||
flex: '0 0 auto',
|
||||
fontFamily: theme.typography.fonts.mono,
|
||||
fontSize: theme.typography.size.s1,
|
||||
wordBreak: 'break-word',
|
||||
@ -43,6 +44,8 @@ const Text = styled.span<{}>(codeCommon, ({ theme }) => ({
|
||||
paddingTop: '2px',
|
||||
paddingBottom: '2px',
|
||||
lineHeight: '13px',
|
||||
whiteSpace: 'normal',
|
||||
maxWidth: '100%',
|
||||
}));
|
||||
|
||||
const ExpandButton = styled.button<{}>(({ theme }) => ({
|
||||
|
Loading…
x
Reference in New Issue
Block a user