mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-04 18:24:46 +02:00
Fix:Mobile flag max size
This commit is contained in:
parent
30e0cc4c07
commit
0dca8472de
4 changed files with 9 additions and 6 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue