CSS fixes to allow long text to wrap, while setting a min-width to keep short text from wrapping

This commit is contained in:
Chris Hull 2020-08-05 17:29:38 -04:00
parent e9ffe87cd8
commit a11b2a21e1

View File

@ -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 }) => ({