Make minimum width for 3-column layout 1280px (#255) #256

Merged
floatingghost merged 2 commits from norm/pleroma-fe:1280px-wide into develop 2022-12-30 03:01:22 +00:00
Showing only changes of commit 0f5e3a905b - Show all commits

View file

@ -186,7 +186,7 @@ const interfaceMod = {
if (thirdColumnMode === 'none' || !rootState.users.currentUser) {
commit('setLayoutType', normalOrMobile)
} else {
const wideLayout = width >= 1300
const wideLayout = width >= 1280
commit('setLayoutType', wideLayout ? 'wide' : normalOrMobile)
}
},