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
CSS Variable in <style jsx>... doesn't update between pages
<style jsx>...
The UI should display
on /
/
and on /other
/other
The CSS variable / pseudo-element doesn't update on route change
on /other
A Browser-refresh updates the --content css variable accordingly
--content
It's possible to fix this issue if the const itself has a different name, per page
const
// index.js const one = "HOME" // other.js - const one = "OTHER" + const two = "OTHER"
but this seems weird/unnecessary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🐛 Bug
CSS Variable in
<style jsx>...
doesn't update between pagesTiny Demo Repo + Deployment
Expected
The UI should display
on
/
and on
/other
Observed
The CSS variable / pseudo-element doesn't update on route change
on
/
on
/other
Notes
A Browser-refresh updates the
--content
css variable accordinglyWorkaround
It's possible to fix this issue if the
const
itself has a different name, per pagebut this seems weird/unnecessary
The text was updated successfully, but these errors were encountered: