Skip to content

Commit

Permalink
missing card color
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKun21 committed Nov 12, 2024
1 parent 3c1e969 commit d4d56d4
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,12 @@ private fun CardPrioritySummary(cardPriority: CardPriorityPerWave) {
style = MaterialTheme.typography.bodyMedium
)

Card {
Card(
colors = CardDefaults.cardColors(
containerColor = MaterialTheme.colorScheme.surfaceVariant,
contentColor = MaterialTheme.colorScheme.onSurfaceVariant
)
) {
val priorityString = buildAnnotatedString {
priorities.forEachIndexed { index, it ->
if (index != 0) {
Expand Down

0 comments on commit d4d56d4

Please sign in to comment.