Skip to content

Commit 6fdc138

Browse files
fix: assistant bubble width on Android and disable iOS release workflow
- Set assistant bubble minWidth to 85% so thinking cards don't touch screen edges on Android - Replace fixed minWidth/alignSelf on thinking block with width: 100% of parent bubble - Disable iOS release workflow (manual trigger only for now) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 356de2f commit 6fdc138

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/release-ios.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Build and Release iOS
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_dispatch: # Disabled - manual trigger only for now
75

86
permissions:
97
contents: write

src/components/ChatMessage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,7 @@ const createStyles = (colors: ThemeColors, _shadows: ThemeShadows) => ({
704704
assistantBubble: {
705705
backgroundColor: colors.surface,
706706
borderBottomLeftRadius: 4,
707+
minWidth: '85%',
707708
},
708709
attachmentsContainer: {
709710
flexDirection: 'row' as const,
@@ -799,8 +800,7 @@ const createStyles = (colors: ThemeColors, _shadows: ThemeShadows) => ({
799800
borderRadius: 8,
800801
marginBottom: 8,
801802
overflow: 'hidden' as const,
802-
minWidth: 260,
803-
alignSelf: 'stretch' as const,
803+
width: '100%',
804804
},
805805
thinkingHeader: {
806806
flexDirection: 'row' as const,

0 commit comments

Comments
 (0)