From e7493af7c8dc46ec4ae75d19065eef1a596ae3c6 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:40:54 +0400 Subject: [PATCH] paddings --- .../kotlin/chat/simplex/common/views/chat/ChatView.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt index c360ab812f..626003866f 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatView.kt @@ -1878,14 +1878,15 @@ fun BoxScope.ChatItemsList( if (contextStr != null) { Row( verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.spacedBy(DEFAULT_PADDING_HALF, Alignment.CenterHorizontally), + horizontalArrangement = Arrangement.spacedBy(8.dp, Alignment.CenterHorizontally), modifier = Modifier .padding(top = DEFAULT_PADDING) ) { Icon( painterResource(MR.images.ic_info), contentDescription = null, - tint = MaterialTheme.colors.secondary + tint = MaterialTheme.colors.secondary, + modifier = Modifier.size(18.dp) ) Text( contextStr,