Make minimum width for 3-column layout 1280px
ci/woodpecker/pr/woodpecker Pipeline was successful Details

1280px is a pretty common screen width for several resolutions
(1280x720, 1280x800, 1280x1024, etc.). Since it is only 20px less than
the current 1300px minimum, this shouldn't be a big issue to lower the
minimum screen width for the 3-column layout to 1280px.

Closes: AkkomaGang/pleroma-fe#255
This commit is contained in:
Norm 2022-12-15 19:30:45 -05:00
parent b009428814
commit 0f5e3a905b
1 changed files with 1 additions and 1 deletions

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)
}
},