From 8238f07ade7124cd6100b3983879bf20a53e63f3 Mon Sep 17 00:00:00 2001 From: AlanBell Date: Sun, 4 Dec 2022 10:40:40 +0000 Subject: [PATCH] Update components.scss limit the flexing of the drawer and columns, allow columns to go slightly thinner before scrolling --- app/javascript/styles/mastodon/components.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index e4d7d4c378..fde24e5756 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2278,7 +2278,8 @@ $ui-header-height: 55px; } .column { - min-width: 350px; + min-width: 300px; + max-width: 550px; position: relative; box-sizing: border-box; display: flex; @@ -2300,7 +2301,8 @@ $ui-header-height: 55px; } .drawer { - width: 300px; + min-width: 300px; + max-width: 400px; box-sizing: border-box; display: flex; flex-direction: column;