diff --git a/src/components/StickySidebar/StickyResponsiveSidebar.tsx b/src/components/StickySidebar/StickyResponsiveSidebar.tsx index 7159dc1eef..01992dd607 100644 --- a/src/components/StickySidebar/StickyResponsiveSidebar.tsx +++ b/src/components/StickySidebar/StickyResponsiveSidebar.tsx @@ -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')}; `};