FIX: followups to composer notch adjustments (#21592)

We had safe-area-inset-bottom still set at a wrong place which was causing issues but was also useful to some cases. This commit removes it and ensures the affected cases are corrected.
This commit is contained in:
Joffrey JAFFEUX 2023-05-16 20:05:56 +02:00 committed by GitHub
parent dec38e2daf
commit 2f73316104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -592,7 +592,6 @@ html.has-full-page-chat {
.full-page-chat {
height: 100%;
min-height: 0;
padding-bottom: env(safe-area-inset-bottom);
}
.main-chat-outlet {

View File

@ -1,7 +1,7 @@
.chat-browse-view {
position: relative;
box-sizing: border-box;
padding: 1rem;
padding: 1rem 1rem env(safe-area-inset-bottom) 1rem;
&__header {
display: flex;

View File

@ -8,6 +8,7 @@
.chat-tabs__tabpanel {
height: 100%;
min-height: 1px;
padding-bottom: env(safe-area-inset-bottom);
}
.chat-tabs-list {