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
already talked about this in issue #274
I can't make it work even if I define a global class because the overflow-x is on the div itself, why make it so hard?
<div class="line-numbers svelte-1vh31p0" style="overflow-x: auto;"> <table class="svelte-1vh31p0"> .... </table> </div>
the only way i was able to overwrite it was with a !important like this
!important
.line-numbers { overflow-x: unset !important; overflow-y: unset !important; }
I don't think it is the right way
the whole idea that I need to define as a global class and use it in my components is wrong in the first place
The text was updated successfully, but these errors were encountered:
No branches or pull requests
already talked about this in issue #274
I can't make it work even if I define a global class because the overflow-x is on the div itself, why make it so hard?
the only way i was able to overwrite it was with a
!important
like thisI don't think it is the right way
the whole idea that I need to define as a global class and use it in my components is wrong in the first place
The text was updated successfully, but these errors were encountered: