From 672386a1b9a194cfe7493fe33a9b8d2742cdcb53 Mon Sep 17 00:00:00 2001 From: Daenney Date: Sat, 8 Jul 2023 09:54:26 +0200 Subject: [PATCH] [bugfix] Don't overflow on very wide status'es (#1956) If someone makes a post with a long, uninterrupted piece of text in a code snippet, we would stretch the column to fit it, resulting in the UI going a bit whacky. By setting min-width: 0% this fixes it, and we now automatically get a scrollbar on overflow instead. Fixes: #1952 --- web/source/css/profile.css | 1 + 1 file changed, 1 insertion(+) diff --git a/web/source/css/profile.css b/web/source/css/profile.css index cf58713cb..bc1a32a5d 100644 --- a/web/source/css/profile.css +++ b/web/source/css/profile.css @@ -181,6 +181,7 @@ display: flex; flex-direction: column; gap: 0.4rem; + min-width: 0%; .col-header { display: grid;