Skip to content

Commit

Permalink
add padding around platform details
Browse files Browse the repository at this point in the history
  • Loading branch information
shengyou committed Sep 5, 2023
1 parent 7ed35ba commit 86804a6
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ fun PlatformsTabContent(supportedPlatforms: List<Platform>) {
Column(verticalArrangement = Arrangement.spacedBy(SpacingInnerElements())) {
PlatformChips(supportedPlatforms, Modifier.padding(8.dp))
}
Column(verticalArrangement = Arrangement.spacedBy(SpacingInnerElements())) {
Column(
modifier = Modifier.padding(15.dp),
verticalArrangement = Arrangement.spacedBy(SpacingInnerElements())
) {
PlatformDetails(supportedPlatforms)
}
}
Expand Down

0 comments on commit 86804a6

Please sign in to comment.