Skip to content

Commit

Permalink
BIT-904: Fixing color of add an item button while in dark them (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-livefront authored and vvolkgang committed Jun 20, 2024
1 parent fe0fae4 commit bb2b0e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ fun VaultNoItemsView(
.padding(horizontal = 16.dp),
onClick = addItemClickAction,
colors = ButtonDefaults.buttonColors(
containerColor = MaterialTheme.colorScheme.primaryContainer,
contentColor = MaterialTheme.colorScheme.onPrimaryContainer,
containerColor = MaterialTheme.colorScheme.secondaryContainer,
contentColor = MaterialTheme.colorScheme.onSecondaryContainer,
),
) {
Text(
Expand Down

0 comments on commit bb2b0e8

Please sign in to comment.