Fix:Mobile flag max size

This commit is contained in:
advplyr 2022-02-11 08:50:28 -06:00
parent 30e0cc4c07
commit 0dca8472de
4 changed files with 9 additions and 6 deletions

View file

@ -13,7 +13,7 @@ export const getters = {}
export const mutations = {
updateWindowSize(state, { width, height }) {
state.isMobile = width < 768 || height < 768
state.isMobile = width < 640 || height < 640
state.isMobileLandscape = state.isMobile && height > width
},
setShowUserCollectionsModal(state, val) {