Skip to content

Instantly share code, notes, and snippets.

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 MariusAlch/5b77582116ed6c9e73a8d37c88a61ff7 to your computer and use it in GitHub Desktop.
Save MariusAlch/5b77582116ed6c9e73a8d37c88a61ff7 to your computer and use it in GitHub Desktop.
const Table = styled.table`
margin-right: 8px; // <-- flipping does work
td {
text-align: left; // <-- flipping does not work
}
`
///////
const Table = styled.table`
margin-right: 8px; // <-- flipping does work
`
const Td = styled.td`
text-align: left; // <-- flipping does work
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment