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
Basically, the CSS turns out like this:
background-image: url(app://10b7a07ec12e16844f982aa5d5bc4355d44c/C:/path/to/vault with '/image.png?1702049886735);
which leads to an invalid property value error in Devtools. The fix would be to escape the apostrophes like this:
background-image: url(app://10b7a07ec12e16844f982aa5d5bc4355d44c/C:/path/to/vault with \'/image.png?1702049886735);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Basically, the CSS turns out like this:
background-image: url(app://10b7a07ec12e16844f982aa5d5bc4355d44c/C:/path/to/vault with '/image.png?1702049886735);
which leads to an invalid property value error in Devtools. The fix would be to escape the apostrophes like this:
The text was updated successfully, but these errors were encountered: