We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c194e2b commit e825e8bCopy full SHA for e825e8b
packages/overmind-website/src/components/MobileTopBar/index.tsx
@@ -17,13 +17,9 @@ class MobileTopBar extends React.Component<Props> {
17
}
18
openMenu = () => {
19
this.menu.style.transform = 'translate3d(0, 0, 0)'
20
- const page: HTMLElement = document.querySelector('#overmind-app')
21
- page.style.overflowY = 'hidden'
22
23
closeMenu = () => {
24
this.menu.style.transform = 'translate3d(-110vw, 0, 0)'
25
26
- page.style.overflowY = 'scroll'
27
28
render() {
29
const { selectedTheme, currentPage, currentPath } = this.props
0 commit comments