Skip to content

Commit

Permalink
Fix post excerpt margin
Browse files Browse the repository at this point in the history
  • Loading branch information
RenanLukas committed Apr 9, 2024
1 parent 2f5c888 commit efae10d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ fun HorizontalPostListItem(
)
// Post excerpt
Text(
modifier = Modifier.padding(top = Margin.Small.value),
modifier = Modifier.padding(
top = Margin.Small.value,
bottom = Margin.Small.value,
),
text = postExcerpt,
style = MaterialTheme.typography.bodySmall,
color = primaryElementColor,
Expand Down

0 comments on commit efae10d

Please sign in to comment.