[fenix] For https://github.com/mozilla-mobile/fenix/issues/25938: Address MessageCard text not adapting to the dark theme

pull/600/head
Arturo Mejia 2 years ago committed by mergify[bot]
parent 597aac0c72
commit 9c921c5eb8

@ -95,7 +95,8 @@ fun MessageCard(
Text(
text = message.data.text,
modifier = Modifier.fillMaxWidth(),
fontSize = 14.sp
fontSize = 14.sp,
color = FirefoxTheme.colors.textSecondary,
)
} else {
Row(
@ -104,7 +105,8 @@ fun MessageCard(
Text(
text = message.data.text,
modifier = Modifier.weight(1f),
fontSize = 14.sp
fontSize = 14.sp,
color = FirefoxTheme.colors.textPrimary,
)
IconButton(

Loading…
Cancel
Save