From 2b0e6ace561a020bbd81fc41c38544d8baff2e01 Mon Sep 17 00:00:00 2001 From: tfomkin Date: Sun, 8 Feb 2026 17:46:10 +0800 Subject: [PATCH] fix: voice mode modal layout fix --- .../voice-mode-modal/src/lib/component.tsx | 50 ++++++++++--------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx b/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx index 517fea6..e0573d1 100644 --- a/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx +++ b/libs/mobile/chat/features/voice-mode-modal/src/lib/component.tsx @@ -184,31 +184,33 @@ export function VoiceModeModal({ onChatCreated, ref, ...props }: VoiceModeModalP backdropTransitionOutTiming={1} animationOutTiming={1} animationIn='fadeIn' - style={{ overflow: 'hidden' }} + style={{ overflow: 'hidden', margin: 0 }} {...props}> - - - {isThinking || isAiSpeaking ? : } - - - - - {isAiSpeaking - ? translate('TEXT_TALKING') - : isThinking - ? translate('TEXT_THINKING') - : translate('TEXT_LISTENING')} - - - - + + + + {isThinking || isAiSpeaking ? : } + + + + + {isAiSpeaking + ? translate('TEXT_TALKING') + : isThinking + ? translate('TEXT_THINKING') + : translate('TEXT_LISTENING')} + + + + + );