Fix sticky navbar on mobile devices (#422)

* 🐛 Fix sticky navbar on mobile devices

* 🔧 Change from accelerometer to user-agent

* 🐛 Fix window not available, use sceeen height

* 🔧 Move to CSS, hide sticky navbar on mobile

Co-authored-by: Xetera <[email protected]>
This commit is contained in:
oof2win2
2021-10-11 10:10:14 +03:00
committed by GitHub
co-authored by Xetera
parent 2de078558e
commit 291f30fdb4
-7
View File
@@ -68,13 +68,6 @@ export const HeaderWrapperSticky = styled.div`
width: 100% !important;
padding-right: 0 !important;
}
@media screen and (max-width: 767px) {
display: flex;
align-items: flex-end;
height: auto;
min-height: ${height}px;
}
`
export const Background = styled.div`