Change label style

This commit is contained in:
Sad Ellie 2023-10-08 19:10:24 +03:00
parent bbacbf78f0
commit cfbfd6041d

View File

@ -231,7 +231,8 @@ private fun TimeZoneLabel(
) )
Text( Text(
text = stringResource(R.string.add_label), text = stringResource(R.string.add_label),
color = MaterialTheme.colorScheme.onSurfaceVariant color = MaterialTheme.colorScheme.onSurfaceVariant,
style = MaterialTheme.typography.headlineMedium
) )
} }
} }
@ -249,7 +250,8 @@ private fun TimeZoneLabel(
} }
Text( Text(
text = label, text = label,
color = MaterialTheme.colorScheme.onSurfaceVariant color = MaterialTheme.colorScheme.onSurfaceVariant,
style = MaterialTheme.typography.headlineMedium
) )
} }
} }