Skip to content

Commit 7e18ee0

Browse files
committed
style: add bottom padding to ReceivedFundsConfirmation below button
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 95d2395 commit 7e18ee0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

apps/flipcash/features/scanner/src/main/kotlin/com/flipcash/app/scanner/internal/ui/modals/ReceivedFundsConfirmation.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ internal fun ReceivedFundsConfirmation(
6161
}
6262

6363
CodeButton(
64-
modifier = Modifier.fillMaxWidth().padding(top = CodeTheme.dimens.grid.x6),
64+
modifier = Modifier
65+
.fillMaxWidth()
66+
.padding(
67+
top = CodeTheme.dimens.grid.x6,
68+
bottom = CodeTheme.dimens.inset,
69+
),
6570
onClick = onClaim,
6671
buttonState = ButtonState.Filled,
6772
text = stringResource(id = R.string.action_putInWallet)

0 commit comments

Comments
 (0)