mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 22:53:44 +08:00
2f73316104
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.
17 lines
252 B
SCSS
17 lines
252 B
SCSS
.chat-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
min-height: 1px;
|
|
}
|
|
|
|
.chat-tabs__tabpanel {
|
|
height: 100%;
|
|
min-height: 1px;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
.chat-tabs-list {
|
|
margin: 1.5rem 0 2rem 1rem;
|
|
}
|