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:
parent
dec38e2daf
commit
2f73316104
|
@ -592,7 +592,6 @@ html.has-full-page-chat {
|
||||||
.full-page-chat {
|
.full-page-chat {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
padding-bottom: env(safe-area-inset-bottom);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-chat-outlet {
|
.main-chat-outlet {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.chat-browse-view {
|
.chat-browse-view {
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 1rem;
|
padding: 1rem 1rem env(safe-area-inset-bottom) 1rem;
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
.chat-tabs__tabpanel {
|
.chat-tabs__tabpanel {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 1px;
|
min-height: 1px;
|
||||||
|
padding-bottom: env(safe-area-inset-bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-tabs-list {
|
.chat-tabs-list {
|
||||||
|
|
Loading…
Reference in New Issue