Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommendation bar text shrinking bug #433

Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ const styles = theme => ({
display: 'flex',
flexFlow: 'row nowrap',
alignItems: 'center',
maxWidth: '50%',
maxWidth: '80%',
},
optionTitleWrapper: {
flex: '1 1 max-content',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
flexShrink: '0',
maxWidth: '85%',
},
optionTitle: {
display: 'inline',
Expand All @@ -31,6 +32,10 @@ const styles = theme => ({
fontSize: '12px',
color: 'gray',
marginLeft: '10px',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
minWidth: '15%',
},
optionImageWrapper: {
display: 'flex',
Expand Down