Skip to content

Commit

Permalink
Fix padding on Continue Reading row
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulyaara committed Apr 22, 2024
1 parent 4dc5c3e commit 2bcedfe
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ internal fun ContinueReading(
}

LazyRow(
contentPadding = PaddingValues(horizontal = Dimens.Spacing12),
contentPadding = PaddingValues(
start = Dimens.Spacing12,
end = Dimens.Spacing12,
bottom = Dimens.Spacing12
),
horizontalArrangement = Arrangement.spacedBy(Dimens.Spacing20)
) {
items(readingList, key = { it.recentItem.itemId }) { continueReading ->
Expand Down

0 comments on commit 2bcedfe

Please sign in to comment.