Skip to content

Commit

Permalink
Merge branch 'master' into data-table-style-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan authored Jan 22, 2020
2 parents 073db0b + a04a3d5 commit a8f0c37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/components/src/components/tag/_tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
min-width: rem(32px); // ensures tag stays pill shaped;
margin: $carbon--spacing-02;
border-radius: rem(15px);
cursor: default;

&:not(:first-child) {
margin-left: 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/Button/Button-story.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const { prefix } = settings;

const icons = {
None: 'None',
'Add with filled circle (Add16 from `@carbon/icons-react`)': 'Add16',
'Add (Add16 from `@carbon/icons-react`)': 'Add16',
'Search (Search16 from `@carbon/icons-react`)': 'Search16',
};

Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/components/Tag/Tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ const Tag = ({
<Close16 />
</button>
) : (
<button className={tagClasses} {...other}>
<span className={tagClasses} {...other}>
{children !== null && children !== undefined ? children : TYPES[type]}
</button>
</span>
);
};

Expand Down

0 comments on commit a8f0c37

Please sign in to comment.