Skip to content

Commit

Permalink
Merge branch 'master' into stats-icons-2
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan authored Feb 6, 2020
2 parents caa6d95 + 4b9cc7c commit 6ece94a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -18927,6 +18927,7 @@ Inline notification styles
min-height: rem(48px);
min-width: rem(288px);
max-width: rem(288px);
width: 100%;
color: $inverse-01;
margin-top: $carbon--spacing-05;
margin-bottom: $carbon--spacing-05;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
min-height: rem(48px);
min-width: rem(288px);
max-width: rem(288px);
width: 100%;
color: $inverse-01;
margin-top: $carbon--spacing-05;
margin-bottom: $carbon--spacing-05;
Expand Down
12 changes: 7 additions & 5 deletions packages/react/src/components/UIShell/HeaderSideNavItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ const HeaderSideNavItems = ({
children,
hasDivider,
}) => {
const className = cx({
[`${prefix}--side-nav__header-navigation`]: true,
[`${prefix}--side-nav__header-divider`]: hasDivider,
customClassName,
});
const className = cx(
{
[`${prefix}--side-nav__header-navigation`]: true,
[`${prefix}--side-nav__header-divider`]: hasDivider,
},
customClassName
);
return <div className={className}>{children}</div>;
};

Expand Down

0 comments on commit 6ece94a

Please sign in to comment.