Skip to content

Commit

Permalink
Small padding tweak on RunScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
sdsantos committed Nov 25, 2024
1 parent 09b6cde commit 8ded492
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ fun RunScreen(
LazyColumn(
contentPadding = PaddingValues(
start = 8.dp,
end = 16.dp,
end = 8.dp,
// Insets + Run tests button
bottom =
WindowInsets.navigationBars.asPaddingValues().calculateBottomPadding() + 64.dp,
bottom = WindowInsets.navigationBars.asPaddingValues().calculateBottomPadding()
+ 64.dp,
),
modifier = Modifier.fillMaxSize()
.testTag("Run-DescriptorsList"),
Expand Down Expand Up @@ -272,7 +272,7 @@ private fun DescriptorItem(
onClick = { onChecked(descriptorItem.state != ToggleableState.On) },
role = Role.Checkbox,
)
.padding(horizontal = 16.dp),
.padding(start = 16.dp, end = 8.dp),
) {
TriStateCheckbox(
state = descriptorItem.state,
Expand Down

0 comments on commit 8ded492

Please sign in to comment.