Skip to content

Commit 6b74e88

Browse files
committed
style: Reduce message bubble padding for compact reply context
- Reduced horizontal padding of message bubbles from 2 to 1 (left/right). - Eliminated excess whitespace to match WhatsApp Web's visual density.
1 parent a8f4643 commit 6b74e88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/views/ConversationView.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,8 +833,8 @@ function renderMessage(
833833
id: `msg-${msgId}-bubble`,
834834
maxWidth: "65%",
835835
minWidth: "15%",
836-
paddingLeft: 2,
837-
paddingRight: 2,
836+
paddingLeft: 1,
837+
paddingRight: 1,
838838
backgroundColor: isFromMe ? WhatsAppTheme.greenDark : WhatsAppTheme.receivedBubble,
839839
border: true,
840840
borderColor: isFromMe ? WhatsAppTheme.green : WhatsAppTheme.borderColor,

0 commit comments

Comments
 (0)