reactjs / react.dev

The React documentation website
https://react.dev/
Creative Commons Attribution 4.0 International
11k stars 7.51k forks source link

[Bug]: Left navigation is not displayed in Chrome #7104

Open toshihirosatojp opened 1 month ago

toshihirosatojp commented 1 month ago

Summary

Left navigation is not displayed in Chrome: Version 127.0.6533.100 (Official Build) (64-bit)

image

Page

https://react.dev/

Details

No response

Rekl0w commented 1 month ago

Works for me.

olibyte commented 3 weeks ago

Could be intentional, due to a breakpoint lg:hidden in the TopNav.tsx component. So on lg viewports and above, the hamburger on the left of the TopNav is hidden, while links on the right of the TopNav render. Anything smaller and the hamburger menu renders on the left and right TopNav items are hidden.

https://github.com/reactjs/react.dev/blob/391dadb993d43c6bd15d9ebfdfc3adeb16d52094/src/components/Layout/TopNav/TopNav.tsx#L259 https://github.com/reactjs/react.dev/blob/391dadb993d43c6bd15d9ebfdfc3adeb16d52094/src/components/Layout/TopNav/TopNav.tsx#L409

reactTopNav