3
0

Update condition for when sidebar is mobile

This commit is contained in:
Jože Fortun
2023-02-10 14:13:55 +01:00
parent 96f8bc55c2
commit fc4e634fe5

View File

@@ -214,7 +214,7 @@ export default {
},
isMobile () {
return window.innerWidth < 576
return window.innerWidth < 1024 || /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
},
},