const Wrapper = styled(({ isActive: boolean, ...rest }) => (
<Container {...rest}>{rest.children}</Container>
))`
position: fixed;
z-index: 1000;
left: 0;
background-color: #343a40;
color: #fff;
transition: transform 300ms ease-in-out;
display: ${props => (props.isActive ? "block" : "none")};
max-width: 576px;
padding: 0.25rem 0.75rem;
`;
Created
August 28, 2020 15:20
-
-
Save JanGalek/fc214fe263932824590ad3fd5de3b6f3 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment