From 7676e5c67ea6b35b2f035743f0d04a4bef7f88dc Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Sat, 18 Oct 2025 15:46:30 +0530 Subject: [PATCH] refactor: Adjust chat bubble and message bubble padding for improved UI consistency - Reduced the chat bubble padding from 16.0 to 12.0 for a more compact design. - Updated the message bubble border radius from 18.0 to 12.0 to enhance visual harmony across components. --- lib/shared/theme/theme_extensions.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/shared/theme/theme_extensions.dart b/lib/shared/theme/theme_extensions.dart index c205a0f..2b42c00 100644 --- a/lib/shared/theme/theme_extensions.dart +++ b/lib/shared/theme/theme_extensions.dart @@ -905,7 +905,7 @@ class Spacing { static const double extraSpacious = 32.0; // Specific component spacing with better consistency - static const double chatBubblePadding = 16.0; + static const double chatBubblePadding = 12.0; static const double actionButtonPadding = 12.0; static const double floatingButtonPadding = 16.0; static const double bottomSheetPadding = 24.0; @@ -949,7 +949,7 @@ class AppBorderRadius { static const double card = 16.0; static const double input = 12.0; static const double modal = 20.0; - static const double messageBubble = 18.0; + static const double messageBubble = 12.0; static const double navigation = 12.0; static const double avatar = 50.0; static const double badge = 20.0;