-
Notifications
You must be signed in to change notification settings - Fork 25.6k
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
Long sidebar overlaps with post content when unfolded #668
Comments
Will have to see if I can reproduce it. Sure looks like this issue from before related to the "sticky" sidebar. |
I've done some theme customization, so maybe I've messed up things at some point. Thanks for looking it up, and of course also for this awesome theme! |
I think I know what the issue is. On screen sizes Shouldn't take much CSS to fix it. |
@carlesfernandez Just to be sure it's not due to a customization you did (I don't think it is 😄) can you verify if this page looks messed up too in Chrome for Android? https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ |
OK. Thanks for checking. It's definitely not the Might need to change .nav__list input:checked ~ .nav__items {
-webkit-transition: 0.5s ease-in-out;
transition: 0.5s ease-in-out;
- max-height: 100vh;
+ max-height: 100%;
overflow: visible;
opacity: 1;
margin-top: 1em;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
} |
You nailed it! I confirm this change solves the issue in Chrome for Android. Thank you! |
Fantastic. Thanks for identifying and testing the bug. |
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue #668
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue mmistakes#668
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue mmistakes#668
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue mmistakes#668
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue mmistakes#668
- Use `max-height: 9999px` for smoother animation than `max-height: 100%` - Issue mmistakes#668
bundle update
.bundle exec jekyll build
.Environment informations
github-pages
version: 104Expected behavior
A long sidebar overlaps with post content when the menu is unfolded, when using Chrome for Android. It looks good (i.e., the menu folds and unfolds correctly) in Chrome for desktop/laptops.
Steps to reproduce the behavior
Example:
Web: http://gnss-sdr.org/news/
Repo: https://github.com/gnss-sdr/geniuss-place
Using GitHub Pages
How it is rendered by Chrome for Android when menu is unfolded:
The text was updated successfully, but these errors were encountered: