Skip to content

Commit 1d5d0b3

Browse files
committed
fix: fit padding
1 parent a463df6 commit 1d5d0b3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

app/src/main/java/to/bitkit/ui/screens/transfer/SpendingAmountScreen.kt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ private fun Content(
121121
.imePadding()
122122
.testTag("SpendingAmount")
123123
) {
124-
VerticalSpacer(32.dp)
124+
VerticalSpacer(16.dp)
125125
Display(
126126
text = stringResource(R.string.lightning__spending_amount__title)
127127
.withAccent(accentColor = Colors.Purple)
128128
)
129-
VerticalSpacer(8.dp)
129+
VerticalSpacer(4.dp)
130130

131131
NumberPadTextField(
132132
input = uiState.input,
@@ -135,7 +135,7 @@ private fun Content(
135135
primaryDisplay = currencies.primaryDisplay,
136136
modifier = Modifier
137137
.fillMaxWidth()
138-
// .testTag("SendNumberField")
138+
// .testTag("SendNumberField")
139139
)
140140

141141
FillHeight()
@@ -188,7 +188,7 @@ private fun Content(
188188
.fillMaxWidth()
189189
)
190190

191-
VerticalSpacer(16.dp)
191+
VerticalSpacer(8.dp)
192192

193193
PrimaryButton(
194194
text = stringResource(R.string.common__continue),
@@ -219,6 +219,7 @@ private fun Preview() {
219219
)
220220
}
221221
}
222+
222223
@Preview(showBackground = true, device = NEXUS_5)
223224
@Composable
224225
private fun Preview2() {

0 commit comments

Comments
 (0)