From 471c54d6f48d02adaf04e99566d300a1ecaa0615 Mon Sep 17 00:00:00 2001 From: Diego Beraldin Date: Mon, 15 Apr 2024 19:13:09 +0200 Subject: [PATCH] chore: update layout of inbox reply subtitle (#691) --- .../core/commonui/lemmyui/InboxReplySubtitle.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/commonui/lemmyui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/lemmyui/InboxReplySubtitle.kt b/core/commonui/lemmyui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/lemmyui/InboxReplySubtitle.kt index f5e24ea81..1b2be6df6 100644 --- a/core/commonui/lemmyui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/lemmyui/InboxReplySubtitle.kt +++ b/core/commonui/lemmyui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/lemmyui/InboxReplySubtitle.kt @@ -110,7 +110,7 @@ fun InboxReplySubtitle( }, ), verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.spacedBy(Spacing.xs), + horizontalArrangement = Arrangement.spacedBy(Spacing.xxs), ) { if (creatorAvatar.isNotEmpty() && autoLoadImages) { CustomImage( @@ -193,7 +193,7 @@ fun InboxReplySubtitle( Text( modifier = Modifier.padding(start = Spacing.xxs), text = date?.prettifyDate() ?: "", - style = MaterialTheme.typography.labelLarge, + style = MaterialTheme.typography.labelMedium, color = ancillaryColor, ) } @@ -239,7 +239,7 @@ fun InboxReplySubtitle( upVoted = upVoted, downVoted = downVoted, ), - style = MaterialTheme.typography.labelLarge, + style = MaterialTheme.typography.labelMedium, color = ancillaryColor, ) }