Skip to content

Commit

Permalink
fix: use sidebar background color value from theme
Browse files Browse the repository at this point in the history
  • Loading branch information
stasiukanya committed Dec 16, 2019
1 parent 2844743 commit 46a415f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StickySidebar/StickyResponsiveSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const StyledStickySidebar = styled.div<{ open?: boolean }>`
position: fixed;
z-index: 20;
width: 100%;
background: #ffffff;
background: ${({ theme }) => theme.menu.backgroundColor};
display: ${props => (props.open ? 'flex' : 'none')};
`};
Expand Down

0 comments on commit 46a415f

Please sign in to comment.