Skip to content

Commit 78c599f

Browse files
committed
feat: remove padding
1 parent b5baa11 commit 78c599f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/sheets/NewTransactionSheet.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ private fun NewTransactionSheetView(
8181
onDetailClick: () -> Unit,
8282
) {
8383
Box(
84-
modifier = Modifier
85-
.fillMaxSize()
84+
modifier = Modifier.fillMaxSize()
8685
) {
8786

8887
if (details.direction == NewTransactionSheetDirection.RECEIVED) {
@@ -125,7 +124,7 @@ private fun NewTransactionSheetView(
125124
painter = painterResource(R.drawable.check),
126125
contentDescription = null,
127126
contentScale = ContentScale.FillWidth,
128-
modifier = Modifier.fillMaxWidth().padding(horizontal = 32.dp)
127+
modifier = Modifier.fillMaxWidth()
129128
)
130129
}
131130

0 commit comments

Comments
 (0)