Skip to content

Instantly share code, notes, and snippets.

@JanGalek
Created August 28, 2020 15:20
Show Gist options
  • Save JanGalek/fc214fe263932824590ad3fd5de3b6f3 to your computer and use it in GitHub Desktop.
Save JanGalek/fc214fe263932824590ad3fd5de3b6f3 to your computer and use it in GitHub Desktop.

Styled components

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;
`;


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment