summaryrefslogtreecommitdiff
path: root/web/source/css
diff options
context:
space:
mode:
authorLibravatar Daenney <daenney@users.noreply.github.com>2023-07-08 09:54:26 +0200
committerLibravatar GitHub <noreply@github.com>2023-07-08 09:54:26 +0200
commit672386a1b9a194cfe7493fe33a9b8d2742cdcb53 (patch)
tree4f865e3af534b601ac8339d8b28e31a4c3721d81 /web/source/css
parent[feature] enable + document explicit IP dialer allowing/denying (#1950) (diff)
downloadgotosocial-672386a1b9a194cfe7493fe33a9b8d2742cdcb53.tar.xz
[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
Diffstat (limited to 'web/source/css')
-rw-r--r--web/source/css/profile.css1
1 files changed, 1 insertions, 0 deletions
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;