BIT-544: Use "surface" as background color on Landing (#76)

Co-authored-by: joshua-livefront <139182194+joshua-livefront@users.noreply.github.com>
This commit is contained in:
Brian Yencho 2023-09-29 15:41:45 -05:00 committed by Álison Fernandes
parent 49bb602a37
commit 1f1985c0dc
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ fun CreateAccountScreen(
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background),
.background(MaterialTheme.colorScheme.surface),
verticalArrangement = spacedBy(8.dp),
) {
Row(

View file

@ -59,7 +59,7 @@ fun LandingScreen(
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier
.background(MaterialTheme.colorScheme.background)
.background(MaterialTheme.colorScheme.surface)
.fillMaxHeight()
.padding(horizontal = 16.dp)
.verticalScroll(scrollState),

View file

@ -48,7 +48,7 @@ fun LoginScreen(
verticalArrangement = Arrangement.spacedBy(12.dp),
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.background(MaterialTheme.colorScheme.surface)
.padding(horizontal = 16.dp, vertical = 32.dp),
) {