fix: use mobile menu background color value from theme (#1144)

This commit is contained in:
Anna Stasiuk 2019-12-16 11:59:22 +02:00 committed by Roman Hotsiy
parent 284474322b
commit 41a9b3c182

View File

@ -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')};
`};