FIX: reverts part of thread css (#20286)

This css was causing the view on mobile to take more space than the available width. This was particularly visible with uploads due to a bug preventing the overflow, this is also fixed.
This commit is contained in:
Joffrey JAFFEUX 2023-02-14 15:38:26 +01:00 committed by GitHub
parent 1506017767
commit 82b4a53d29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,6 @@
.chat-composer-uploads {
max-width: 100%;
.chat-composer-uploads-container {
padding: 0.5rem 10px;
display: flex;

View File

@ -1,10 +1,4 @@
#main-chat-outlet.chat-view {
min-height: 0;
display: grid;
grid-template-rows: 1fr;
grid-template-areas: "main threads";
grid-template-columns: 1fr;
&.has-side-panel-expanded {
grid-template-columns: 3fr 2fr;
}