diff --git a/features/home/impl/src/main/kotlin/com/tangem/features/home/impl/ui/compose/HomeStoriesScreen.kt b/features/home/impl/src/main/kotlin/com/tangem/features/home/impl/ui/compose/HomeStoriesScreen.kt index d0345df0ae..3b381782a4 100644 --- a/features/home/impl/src/main/kotlin/com/tangem/features/home/impl/ui/compose/HomeStoriesScreen.kt +++ b/features/home/impl/src/main/kotlin/com/tangem/features/home/impl/ui/compose/HomeStoriesScreen.kt @@ -55,6 +55,9 @@ internal fun HomeStoriesScreen(state: HomeUM, modifier: Modifier = Modifier) { Column( modifier = Modifier .statusBarsPadding() + // Reserve the height of the progress bar that StoriesContainer draws as a top + // overlay (its 16dp top padding + 2dp bar), so the logo sits below it as before. + .padding(top = TangemTheme.dimens.spacing18) .fillMaxSize(), horizontalAlignment = Alignment.CenterHorizontally, verticalArrangement = Arrangement.Center,