Closed jbest84 closed 1 month ago
If your browser is set to a larger font size (mine is 20px), the left nav/sidebar will overlap into the main content.
It appears at larger screen sizes the sidebar width is 20rem. The main element however has a margin-left: 320px
margin-left: 320px
https://github.com/bikeshaving/crank/blob/master/website/src/components/sidebar.ts#L85
If this is changed to a margin-left: 20rem; to match, it works fine.
margin-left: 20rem;
Thanks for opening the issue! Sorry for the delay.
If your browser is set to a larger font size (mine is 20px), the left nav/sidebar will overlap into the main content.
It appears at larger screen sizes the sidebar width is 20rem. The main element however has a
margin-left: 320px
https://github.com/bikeshaving/crank/blob/master/website/src/components/sidebar.ts#L85
If this is changed to a
margin-left: 20rem;
to match, it works fine.Before
After