Carousel buttons should be full width (#3833)

This commit is contained in:
David Perez 2024-08-26 17:09:39 -05:00 committed by GitHub
parent 5bc31448b4
commit 5173dfd424
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,9 +163,10 @@ private fun WelcomeScreenContent(
onClick = onLoginClick,
modifier = Modifier
.standardHorizontalMargin(landscape = LANDSCAPE_HORIZONTAL_MARGIN)
.padding(bottom = 32.dp),
.fillMaxWidth(),
)
Spacer(modifier = Modifier.height(32.dp))
Spacer(modifier = Modifier.navigationBarsPadding())
}
}