Skip to content

Commit

Permalink
fix: reactions padding [WPB-5855] (#2551)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garzas committed Dec 22, 2023
1 parent 8a9969a commit 8d01df7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -297,6 +297,7 @@ fun MessageItem(
}
}
if (shouldDisplayFooter) {
VerticalSpace.x4()
MessageFooter(
messageFooter = messageFooter,
onReactionClicked = onReactionClicked
Expand Down
Expand Up @@ -35,7 +35,7 @@ fun MarkdownParagraph(
clickable: Boolean,
onMentionsUpdate: (List<DisplayMention>) -> Unit
) {
val padding = if (paragraph.parent is Document) dimensions().spacing8x else dimensions().spacing0x
val padding = if (paragraph.parent is Document) dimensions().spacing4x else dimensions().spacing0x
Box(modifier = Modifier.padding(bottom = padding)) {
val annotatedString = buildAnnotatedString {
pushStyle(MaterialTheme.wireTypography.body01.toSpanStyle())
Expand Down

0 comments on commit 8d01df7

Please sign in to comment.