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;
|
||||
z-index: z("fullscreen");
|
||||
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;
|
||||
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 {
|
||||
0% {
|
||||
opacity: 0;
|
||||
|
|
Loading…
Reference in New Issue