From 0f5e3a905bd74667d6c55f69367d5657b566900f Mon Sep 17 00:00:00 2001 From: Francis Dinh Date: Thu, 15 Dec 2022 19:30:45 -0500 Subject: [PATCH] Make minimum width for 3-column layout 1280px 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: https://akkoma.dev/AkkomaGang/pleroma-fe/issues/255 --- src/modules/interface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/interface.js b/src/modules/interface.js index ae1a31c3..33528c0d 100644 --- a/src/modules/interface.js +++ b/src/modules/interface.js @@ -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) } },