From 3561efc1c70ece5b07ce7393c5ec94cfe4c1d1f3 Mon Sep 17 00:00:00 2001 From: louispaulb Date: Mon, 15 Jun 2026 06:24:30 -0400 Subject: [PATCH] fix(inbox/mobile): reply composer no longer hides the "Envoyer" button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On mobile the conversation full-page used a fixed height + overflow:hidden, and the reply q-editor had no max-height — a long body/signature grew it unbounded and pushed the send button past the clipped bottom (user had to shorten the email). - q-editor: max-height=40vh → content scrolls internally, toolbar + send row stay put. - ConversationFullPage @media (max-width:700px): height auto + min-height 100dvh + overflow visible → the page scrolls vertically instead of clipping. Verified at 390x844 with a 27-line signature: editor caps at 40vh (overflow auto), "Envoyer le courriel" stays in view. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/ops/src/components/shared/ConversationPanel.vue | 2 +- apps/ops/src/pages/ConversationFullPage.vue | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/ops/src/components/shared/ConversationPanel.vue b/apps/ops/src/components/shared/ConversationPanel.vue index 75b7b36..82e4082 100644 --- a/apps/ops/src/components/shared/ConversationPanel.vue +++ b/apps/ops/src/components/shared/ConversationPanel.vue @@ -397,7 +397,7 @@