UI: thread panel sizing/spacing on mobile (#21440)

The side panel on mobile is full screen. As a result we need to tweak spacing and sizing to make it correctly full screen like the channel.
This commit is contained in:
Joffrey JAFFEUX 2023-05-09 00:17:42 +02:00 committed by GitHub
parent 7560c0652c
commit 6f26732551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,3 @@
.chat-side-panel {
border-left: 0;
}

View File

@ -0,0 +1,6 @@
.chat-thread {
&__body {
margin: 0 1px 0 0;
padding: 0 10px;
}
}

View File

@ -7,3 +7,5 @@
@import "chat-selection-manager";
@import "chat-emoji-picker";
@import "chat-composer-upload";
@import "chat-side-panel";
@import "chat-thread";