Decrease weather widget detail font

This commit is contained in:
MM20 2021-09-27 16:27:36 +02:00
parent d1dc51c31b
commit fa62e18a4d
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -206,10 +206,12 @@ fun WeatherDetailRow(title: String, value: String) {
CompositionLocalProvider(LocalContentAlpha provides ContentAlpha.medium) {
Text(
text = title,
modifier = Modifier.padding(end = 8.dp)
modifier = Modifier.padding(end = 8.dp),
style = MaterialTheme.typography.body2,
)
Text(
text = value,
style = MaterialTheme.typography.body2,
)
}
}