Fix unit converter button text style

This commit is contained in:
MM20 2021-12-19 12:32:15 +01:00
parent 3c447b82a4
commit fa41c32191
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -135,7 +135,10 @@ fun UnitConverterItem(
modifier = Modifier
.padding(horizontal = 12.dp)
) {
Text(text = stringResource(id = R.string.unit_converter_show_all))
Text(
text = stringResource(id = R.string.unit_converter_show_all),
style = MaterialTheme.typography.labelLarge
)
}
}
}