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
It appears the CSS attribute selector tags are reversed during rendering. For example, given the following:
<style scoped> div { font-size: 5em; text-align: center; }
It renders to:
*[data-static-vue-component] div {font-size: 5em; text-align: center; }
Instead, it should render to the following to properly select tag:
div [data-static-vue-prospect_card] {font-size: 5em; text-align: center; }
The text was updated successfully, but these errors were encountered:
in fact, it's the same issue as #4 the rendering scoped is weird ... (if you want make it : you should use ":scope") would be fixed
Sorry, something went wrong.
currently, to bypass ... you should try :
<style scoped> :scope { font-size: 5em; text-align: center; } </style>
In fact, something like :
<template> <div class="example">hi</div> </template> <style scoped> .example { color: red; } </style>
should be rendered as :
<style> .example[data-minimal] {color: red; } </style>
but it's not the case in the current version ! it's (bad) rendered as :
<style> *[data-minimal] .example {color: red; } </style>
so, to make is works : you should prefix all your inline scoped style with prefix ":scope"
No branches or pull requests
It appears the CSS attribute selector tags are reversed during rendering. For example, given the following:
It renders to:
Instead, it should render to the following to properly select tag:
The text was updated successfully, but these errors were encountered: