mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-12 07:50:34 +03:00
fix: use mobile menu background color value from theme (#1144)
This commit is contained in:
parent
284474322b
commit
41a9b3c182
|
@ -44,7 +44,7 @@ const StyledStickySidebar = styled.div<{ open?: boolean }>`
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #ffffff;
|
background: ${({ theme }) => theme.menu.backgroundColor};
|
||||||
display: ${props => (props.open ? 'flex' : 'none')};
|
display: ${props => (props.open ? 'flex' : 'none')};
|
||||||
`};
|
`};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user