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
I am trying to create a keyframe animation that looks like this:
const cursorBlinkAnim = keyframes({ '0%': {content: '_'}, '100%': {content: ' '} })
But when compiled by glamor the CSS becomes:
@keyframes animation_wzvti9{0%{content:_;}100%{content:px;}}
Using any alternative whitespace character has similar behaviour.
Just in case it's important, I am using glamorous too.
glamorous
Any ideas?
The text was updated successfully, but these errors were encountered:
Hi @sdgluck , Maybe it's too late but today I had the very same issue and I resolved it by using backticks/backquotes like this:
content: `''`,
Hope it helps.
Sorry, something went wrong.
No branches or pull requests
I am trying to create a keyframe animation that looks like this:
But when compiled by glamor the CSS becomes:
Using any alternative whitespace character has similar behaviour.
Just in case it's important, I am using
glamorous
too.Any ideas?
The text was updated successfully, but these errors were encountered: