Skip to content

Instantly share code, notes, and snippets.

@keyurparalkar
Created March 4, 2024 10:26
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 keyurparalkar/cde8163712162a8c20c04a231f69c0b3 to your computer and use it in GitHub Desktop.
Save keyurparalkar/cde8163712162a8c20c04a231f69c0b3 to your computer and use it in GitHub Desktop.
Styled component for unordered list
const StyledUnorderedList = styled.ul`
ul,
li {
list-style: none;
margin: 0;
padding: 0;
}
ul {
margin-left: 0.8rem;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment