Skip to content

Commit

Permalink
fix: πŸ› icon button padding
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyBridle committed Jun 11, 2023
1 parent a8cfd4b commit 862e8df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/main/java/com/chouten/app/ui/views/info/InfoPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -502,13 +502,12 @@ fun InfoPage(
}
)

Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.TopEnd) {
Box(modifier = Modifier.fillMaxSize().padding(top = systemBarsPadding.calculateTopPadding() * 2, end = 16.dp), contentAlignment = Alignment.TopEnd) {
IconButton(
onClick = {
navController.popBackStack()
},
modifier = Modifier
.padding(top = systemBarsPadding.calculateTopPadding() * 2, end = 16.dp)
.clip(
CircleShape
)
Expand Down

0 comments on commit 862e8df

Please sign in to comment.