Skip to content

Commit

Permalink
Fix padding around SelectedFilesCard
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX committed Oct 16, 2024
1 parent 9d34be5 commit aa3e3b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fun SelectedFilesCard(

LazyRow(
Modifier.fillMaxWidth(),
contentPadding = PaddingValues(Margin.Medium),
contentPadding = PaddingValues(start = Margin.Medium, end = Margin.Medium, bottom = Margin.Medium),
horizontalArrangement = Arrangement.spacedBy(Margin.Medium)
) {
item(key = TransferLazyRowKey(TransferLazyRowKey.Type.ADD_BUTTON)) {
Expand Down

0 comments on commit aa3e3b2

Please sign in to comment.