-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Hide the clone table's container when it's not needed #1
Comments
My exact setup is a full application which would be impactical to include as an example. I was hoping that, for example, reverting styles after the header stops being sticky is not too much of a problem even without reproduction, since it sounds like a reasonable thing to do. As for being confused, so am I. But Safari has tons of bugs like that. You blur a blue div and it becomes green. All we can do is work around stuff like that.
Yeah, that's a reasonable fix, but I've tried that already. It doesn't work. The clipping part is probably not the container itself, but something else. The thing is, it's only clipping when the container is present and is fixed. No container? No clipping. Not fixed? No clipping. Why? No idea, it's Safari. It works just fine in Chrome. |
Feel free to open pull request. As I cannot test your proposed changes whether they do the trick. Will regression test it only. |
I was not able to reproduce the issue using browserstack. In any case the proposed change is logical and not causing any regressions as far as I can tell, so I have added it in 1.3.0. I am closing this for now, but please test and provide feedback as I couldn't confirm that it is solving the issue. |
Thanks for trusting me on this, even with no reproduction. I can confirm that the issue has been resolved in the new version. |
@archfz Just a heads up, you left a
|
Thank you for reporting. Removed and released in 1.3.1 |
ring
in Tailwind CSS)How a 0 height element manages to create that thing is anyone's guess, just Safari being Safari.
Possible fixes:
display: none
to the container when it's empty.position: fixed
somehow, since removing it solves the issue.The text was updated successfully, but these errors were encountered: