FIX: Mobile composer helper trigger should work on Android and iOS (#763)
This commit is contained in:
parent
10dae65740
commit
da9e192949
|
@ -15,7 +15,8 @@
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
z-index: z("fullscreen");
|
z-index: z("fullscreen");
|
||||||
top: calc(
|
top: calc(
|
||||||
var(--mobile-virtual-screen-height) - var(--composer-helper-menu-height)
|
var(--mobile-virtual-screen-height) - var(--composer-helper-menu-height) -
|
||||||
|
env(keyboard-inset-height)
|
||||||
);
|
);
|
||||||
right: 0;
|
right: 0;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
|
@ -63,6 +64,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ios-safari-composer-hacks .ai-composer-helper-menu:not(.is-expanded) {
|
||||||
|
top: calc(
|
||||||
|
var(--mobile-virtual-screen-height) - var(--composer-helper-menu-height)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes slide-in {
|
@keyframes slide-in {
|
||||||
0% {
|
0% {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
Loading…
Reference in New Issue