Skip to content

Commit

Permalink
fix(nav): corrected color variable value
Browse files Browse the repository at this point in the history
  • Loading branch information
newick authored and lutangar committed Feb 1, 2019
1 parent d34ae5b commit 5eb6386
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/components/atoms/NavLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ export default styled(ReactRouterNavLink).attrs({ replace: true, activeClassName
padding-bottom: 6px;
text-align: center;
border-top: 2px solid ${props => props.theme.secondaryColor};
&.${props => props.activeClassName} {
border-top: 2px solid ${props => props.theme.darkBlue}
border-top: 2px solid ${props => props.theme.activeColor}
}
& > svg {
Expand All @@ -20,6 +21,6 @@ export default styled(ReactRouterNavLink).attrs({ replace: true, activeClassName
&.${props => props.activeClassName} > svg {
fill: ${props => props.theme.darkBlue}
fill: ${props => props.theme.activeColor}
}
`;
1 change: 0 additions & 1 deletion src/components/atoms/icons/nav/Help.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React from 'react';
export default () => (
<svg viewBox="0 0 27.807 27.807">
<path
fill="#a6b1c0"
d="M13.9 0a13.9 13.9 0 1 0 13.9 13.9A13.9 13.9 0 0 0 13.9 0zm0 25.634A11.731 11.731 0 1 1 25.634 13.9 11.724 11.724 0 0 1 13.9 25.634zm4.345-14.31a4.352 4.352 0 0 1-3.259 4.207V17.3a1.086 1.086 0 0 1-2.172 0v-2.718A1.086 1.086 0 0 1 13.9 13.5a2.172 2.172 0 1 0-2.172-2.172 1.086 1.086 0 0 1-2.172 0 4.345 4.345 0 1 1 8.689 0zm-2.987 9.233A1.358 1.358 0 1 1 13.9 19.2a1.358 1.358 0 0 1 1.361 1.356z" />
</svg>

Expand Down

0 comments on commit 5eb6386

Please sign in to comment.