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 = 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 = label,
color = MaterialTheme.colorScheme.onSurfaceVariant
color = MaterialTheme.colorScheme.onSurfaceVariant,
style = MaterialTheme.typography.headlineMedium
)
}
}