From 84ad02a486dda2e54a16ff0757ee72557ec15675 Mon Sep 17 00:00:00 2001 From: qer Date: Wed, 10 Jun 2026 14:21:36 +0800 Subject: [PATCH] fix(web): hide SVG arrow in mobile send button to avoid double arrows --- apps/kimi-web/src/components/Composer.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/kimi-web/src/components/Composer.vue b/apps/kimi-web/src/components/Composer.vue index 128cdb76f..25a602f50 100644 --- a/apps/kimi-web/src/components/Composer.vue +++ b/apps/kimi-web/src/components/Composer.vue @@ -1465,7 +1465,7 @@ function selectModel(modelId: string): void { gap: 6px; } - /* Send → 36px round */ + /* Send → 36px round (hide the SVG arrow, show only the ::after glyph) */ .send { width: 36px; height: 36px; @@ -1476,6 +1476,9 @@ function selectModel(modelId: string): void { align-self: flex-end; position: relative; } + .send svg { + display: none; + } .send::after { content: "↑"; font-size: 17px;