[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
This commit is contained in:
Daenney 2023-07-08 09:54:26 +02:00 committed by GitHub
parent 2a99df0588
commit 672386a1b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,6 +181,7 @@
display: flex;
flex-direction: column;
gap: 0.4rem;
min-width: 0%;
.col-header {
display: grid;