mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
[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:
parent
2a99df0588
commit
672386a1b9
1 changed files with 1 additions and 0 deletions
|
@ -181,6 +181,7 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
min-width: 0%;
|
||||
|
||||
.col-header {
|
||||
display: grid;
|
||||
|
|
Loading…
Reference in a new issue