Skip to content

Commit 07ea662

Browse files
committed
fix: bottom padding
1 parent 301a9a3 commit 07ea662

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/src/main/java/to/bitkit/ui/onboarding/OnboardingSlidesScreen.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,18 +216,17 @@ fun OnboardingTab(
216216
.fillMaxWidth()
217217
.align(Alignment.BottomCenter),
218218
) {
219-
FillHeight()
220219
Display(text = title.withAccent(accentColor = titleAccentColor))
221220
Spacer(modifier = Modifier.height(8.dp))
222221
BodyM(
223222
text = text,
224223
color = Colors.White64,
224+
minLines = 3
225225
)
226226
disclaimerText?.let {
227-
Spacer(modifier = Modifier.height(6.5.dp))
228227
Footnote(text = it)
229228
}
230-
VerticalSpacer(40.dp) //y offset + dots height
229+
VerticalSpacer(70.dp)
231230
}
232231
}
233232
}

0 commit comments

Comments
 (0)