Skip to content

Commit

Permalink
fix(MultiSelect): correct spacing between checkmark and item text (#5773
Browse files Browse the repository at this point in the history
)
  • Loading branch information
emyarod authored Apr 2, 2020
1 parent e05213a commit e74beb2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/react/src/components/MultiSelect/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,10 @@ export default class MultiSelect extends React.Component {
className={`${prefix}--checkbox-label`}
data-contained-checkbox-state={isChecked}
id={`${itemProps.id}__checkbox`}>
{itemText}
<span
className={`${prefix}--checkbox-label-text`}>
{itemText}
</span>
</span>
</div>
</ListBox.MenuItem>
Expand Down

0 comments on commit e74beb2

Please sign in to comment.