Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created February 6, 2022 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adityatyagi/8ebd40d075b478f4be102101ee414b65 to your computer and use it in GitHub Desktop.
Save adityatyagi/8ebd40d075b478f4be102101ee414b65 to your computer and use it in GitHub Desktop.
const StyledButton = styled.button`
display: inline-block;
border-radius: 3px;
padding: 0.5rem 0;
margin: 0.5rem 1rem;
width: 11rem;
background: #000;
color: white;
border: 2px solid white;
&:hover {
opacity: 0.5;
cursor: pointer;
}
@media screen and (min-width: 768px) {
background: pink;
color: black;
border: 1px solid black;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment