From 262eda229e394b0b61dbac3579a5ecf96227598f Mon Sep 17 00:00:00 2001 From: Paolo Alberca <91231062+omgitsmiles@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:18:08 -0400 Subject: [PATCH] borderRadius 4px, lowered fontSize, and added chipStyle to toggle. WordWrapper, addComma not neccessary so commented out --- src/js/components/Values/ValueNameWithPopoverDisplay.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/js/components/Values/ValueNameWithPopoverDisplay.jsx b/src/js/components/Values/ValueNameWithPopoverDisplay.jsx index bdb84a412..470133d98 100644 --- a/src/js/components/Values/ValueNameWithPopoverDisplay.jsx +++ b/src/js/components/Values/ValueNameWithPopoverDisplay.jsx @@ -170,10 +170,11 @@ class ValueNameWithPopoverDisplay extends Component { id={`${externalUniqueId}-valueIconAndText-${oneIssue.issue_we_vote_id}`} key={`${externalUniqueId}-valueIconAndTextKey-${oneIssue.issue_we_vote_id}`} className="u-cursor--pointer" - style={{ margin: '5px', borderRadius: 2, backgroundColor: '#fff', border: '1px solid #ccc', color: '#555' }} + style={{ margin: '5px', borderRadius: '4px', backgroundColor: '#fff', border: '1px solid #ccc', color: '#555', fontSize: '.8rem' }} + // style={styles().chipStyle} label={oneIssue.issue_name} icon={issueFollowedByVoter ? : null} - > + /> {/* {oneIssue.issue_name} @@ -188,7 +189,7 @@ class ValueNameWithPopoverDisplay extends Component {   )} */} - + {/* */} ); }