Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In your docusaurus config you're setting the hideOnScroll of the Navbar to false so that the navbar is sticky, and apperently there is a bug in docusaurus that makes a 1px gap apear on top of the navbar in this situation on some zoom levels( like 125% in my case), so when the user scrolls the content behind the navbar could be seen through that gap, like you can see in this picture:
This behavior is well documented in this stackoverflow question: https://stackoverflow.com/questions/64729642/css-sticky-ignores-1px
The root of the problem is the combination of position sticky and top 0, the solution is to simply add a top of -1px to the navbar to compensate for the gap, it's the only thing I added as you can already see.