From bf72c490e1ba5554e6b746228462595452a32ded Mon Sep 17 00:00:00 2001 From: Diego Beraldin Date: Tue, 17 Oct 2023 19:35:51 +0200 Subject: [PATCH] fix: horrible and annoying vertical alignment of comment bar --- .../raccoonforlemmy/core/commonui/components/CommentCard.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/core-commonui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/components/CommentCard.kt b/core-commonui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/components/CommentCard.kt index 95ee53763..0390e4fca 100644 --- a/core-commonui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/components/CommentCard.kt +++ b/core-commonui/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/commonui/components/CommentCard.kt @@ -119,6 +119,7 @@ fun CommentCard( if (!hideIndent) { Box( modifier = Modifier + .padding(top = Spacing.xs) .width(barWidth) .height(commentHeight.toLocalDp()) .background(color = barColor)