Does it provide a variable to say whether it's on mobile(phone) or PC ? #5858
-
Does it provide a variable to say whether it's on mobile(phone) or PC ? |
Beta Was this translation helpful? Give feedback.
Answered by
Josh-Cena
Nov 2, 2021
Replies: 1 comment
-
There's a docusaurus/packages/docusaurus-theme-classic/src/theme/DocSidebar/index.tsx Lines 123 to 136 in 44b87c7 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Josh-Cena
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a
@theme/hooks/useWindowSize
hook which you can use in your React app.useWindowSize()
returnsdesktop
,mobile
, orssr
if it is server-side rendered. We use it ourselves:docusaurus/packages/docusaurus-theme-classic/src/theme/DocSidebar/index.tsx
Lines 123 to 136 in 44b87c7