fix(common): slightly increase padding in LobstersCard

This commit is contained in:
Harsh Shandilya 2024-09-02 12:43:32 +05:30
parent 784dcf16f8
commit 1ebf610794
3 changed files with 5 additions and 5 deletions

View file

@ -70,7 +70,7 @@ fun LobstersCard(post: UIPost, postActions: PostActions, modifier: Modifier = Mo
.fillMaxWidth()
.clickable { postActions.viewPost(post.shortId, post.url, post.commentsUrl) }
.background(MaterialTheme.colorScheme.background)
.padding(start = 8.dp, top = 2.dp, bottom = 2.dp)
.padding(start = 8.dp, top = 4.dp, bottom = 4.dp)
) {
Row(
horizontalArrangement = Arrangement.spacedBy(8.dp),