FIX: minor thread changes on mobile (#21457)

- do not render sidepanel resizer as it's not usable on mobile
- removes 1px to the bottom spacing, this spacing won't be necessary once we implement chat-replying-indicator for thread
This commit is contained in:
Joffrey JAFFEUX 2023-05-09 22:38:44 +02:00 committed by GitHub
parent 89f721cf67
commit e935d2bddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,9 @@
}}
>
{{yield}}
<ChatSidePanelResizer />
{{#if this.site.desktopView}}
<ChatSidePanelResizer />
{{/if}}
</div>
{{/if}}

View File

@ -29,6 +29,6 @@
}
.chat-composer__wrapper {
padding-bottom: 28px;
padding-bottom: 27px;
}
}