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
Describe the bug Problems with Frame when adding a background or background-image URL, it returns an [Object object] when you do toCSS();
Desktop (please complete the following information):
Additional context
Don't Work
import { Frame } from 'scenejs'; const frame = new Frame({ 'background-repeat': 'no-repeat', 'background-position': 'center center', 'background-size': 'cover', 'background-image': 'url(https://www.clautic.com/league/wp-content/uploads/unicorn-wallpaper.jpg)', }); console.log(frame.toCSS());
Work
import { Frame } from 'scenejs'; const frame = new Frame({ 'background-repeat': 'no-repeat', 'background-position': 'center center', 'background-size': 'cover' }); console.log(`${frame.toCSS()}; background-image: url(https://www.clautic.com/league/wp-content/uploads/unicorn-wallpaper.jpg)`);
Thanks man
The text was updated successfully, but these errors were encountered:
fix: fix splitStyle function #62
2b09df2
@Yomyer
scenejs 1.1.7 is released. Check it again.
Thank you :)
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Problems with Frame when adding a background or background-image URL, it returns an [Object object] when you do toCSS();
Desktop (please complete the following information):
Additional context
Don't Work
Work
Thanks man
The text was updated successfully, but these errors were encountered: