Left Menu, Composer: Various layout fixes for iOS (#1176)

This commit is contained in:
Alexander Zinchuk 2021-06-17 13:44:36 +03:00
parent 36fd93bb07
commit 4277e6da52
3 changed files with 9 additions and 1 deletions

View File

@ -64,6 +64,13 @@
.Menu .bubble { .Menu .bubble {
min-width: 17rem; min-width: 17rem;
max-height: calc(100vh - 8.5rem);
overflow-y: auto;
overflow-y: overlay;
@media (max-height: 640px) {
max-height: calc(100vh - 11rem);
}
} }
// @optimization // @optimization

View File

@ -261,7 +261,7 @@
&::before { &::before {
content: ""; content: "";
position: absolute; position: absolute;
top: -0.5rem; top: -.5625rem;
left: 0; left: 0;
right: 0; right: 0;
height: 1px; height: 1px;

View File

@ -337,6 +337,7 @@
max-height: 16rem; max-height: 16rem;
padding-top: calc(0.84375rem - var(--border-width)); padding-top: calc(0.84375rem - var(--border-width));
padding-bottom: calc(0.84375rem - var(--border-width)); padding-bottom: calc(0.84375rem - var(--border-width));
overflow: auto;
} }
transition: height 100ms ease; transition: height 100ms ease;