Skip to content

Commit

Permalink
fix: thinner chevrons
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Aug 7, 2020
1 parent 91c2854 commit e626b1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/NavigationItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ const NavItem = ({ page, depthLevel, searchTerm, filteredPageNames }) => {
</span>
{depthLevel > 0 && page.children && (
<FeatherIcon
size="1rem"
className={cx(
{ [styles.isExpanded]: isExpanded },
styles.nestedChevron
Expand Down Expand Up @@ -187,6 +188,7 @@ const NavItem = ({ page, depthLevel, searchTerm, filteredPageNames }) => {
</span>
{depthLevel > 0 && (
<FeatherIcon
size="1rem"
className={cx(
{ [styles.isExpanded]: isExpanded },
styles.nestedChevron
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavigationItems.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ button.navLink {
}

.nestedChevron {
stroke-width: 4;
stroke-width: 2;
transition: 0.2s;

&.isExpanded {
Expand Down

0 comments on commit e626b1e

Please sign in to comment.