We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal reproducible testcase:
import styled from 'styled-components' const media = {} const Container = styled.main` padding: 10px; transform: translateX(var(--menu-${({ state }) => state}-width)); ${media.md` transform: translateX(0); `} ` const Content = () => { const state = 'open' return <Container state={state}>X</Container> } export default Content
Results in the following breaking of styling right after the backtick for the styled component definition (for the rest of the file):
(media is an external helper that I just replaced with an empty object for the purpose of documenting this issue).
media
The text was updated successfully, but these errors were encountered:
Same issue here
Sorry, something went wrong.
I have that same problem as well.
No branches or pull requests
Minimal reproducible testcase:
Results in the following breaking of styling right after the backtick for the styled component definition (for the rest of the file):
(
media
is an external helper that I just replaced with an empty object for the purpose of documenting this issue).The text was updated successfully, but these errors were encountered: