fix(FN-2010): increase quick chat panel height on mobile
- Remove the redundant mobile .quick-chat-panel override block that duplicated panel sizing rules - Increase .quick-chat-panel--mobile height to min(520px, calc(100dvh - 120px)) for more chat space on small screens - Preserve existing bottom offset behavior tied to footer, nav, and safe-area insets
This commit is contained in:
@@ -30840,16 +30840,6 @@ html .column.drag-over * {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* Mobile: FAB and panel positions are set via inline styles, but panel width adapts to mobile */
|
||||
@media (max-width: 768px) {
|
||||
.quick-chat-panel {
|
||||
right: 16px;
|
||||
left: 16px;
|
||||
width: auto;
|
||||
height: min(400px, calc(100vh - 200px));
|
||||
}
|
||||
}
|
||||
|
||||
/* ── Chat View ─────────────────────────────────────────────────────────────── */
|
||||
|
||||
.chat-view {
|
||||
@@ -31551,7 +31541,7 @@ html .column.drag-over * {
|
||||
left: 4px;
|
||||
width: auto;
|
||||
bottom: calc(60px + var(--executor-footer-height-mobile, var(--executor-footer-height, 0px)) + var(--mobile-nav-height, 44px) + env(safe-area-inset-bottom, 0px));
|
||||
height: min(420px, calc(100dvh - 160px));
|
||||
height: min(520px, calc(100dvh - 120px));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user