Skip to content

Commit

Permalink
Fixing comment bottom margin. Fixes #1365 (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Feb 11, 2024
1 parent a935664 commit 5e0d924
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ fun LazyListScope.commentNodeItem(
),
) {
Column(
modifier = Modifier.border(start = border),
modifier = Modifier.border(start = border)
.padding(bottom = LARGE_PADDING),
) {
HorizontalDivider(modifier = Modifier.padding(start = if (node.depth == 0) 0.dp else border.strokeWidth))
Column(
Expand Down Expand Up @@ -818,7 +819,7 @@ fun CommentFooterLine(
onClick = onClick,
onLongClick = onLongClick,
)
.padding(top = LARGE_PADDING, bottom = SMALL_PADDING),
.padding(top = MEDIUM_PADDING),
) {
Row(
horizontalArrangement = Arrangement.spacedBy(XXL_PADDING),
Expand Down

0 comments on commit 5e0d924

Please sign in to comment.