mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:02:46 +08:00
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 {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
|
||||
.main-chat-outlet {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
.chat-tabs__tabpanel {
|
||||
height: 100%;
|
||||
min-height: 1px;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
|
||||
.chat-tabs-list {
|
||||
|
|
Loading…
Reference in New Issue
Block a user