chore: update layout of inbox reply subtitle (#691)

This commit is contained in:
Diego Beraldin 2024-04-15 19:13:09 +02:00 committed by GitHub
parent 83f0a5a2f1
commit 471c54d6f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,
)
}