fix(ui): feedicon text style (#726)

This commit is contained in:
Ash 2024-06-03 18:31:04 +08:00 committed by GitHub
parent ab0e07ad21
commit 8fb090e536
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 3 deletions

View File

@ -76,9 +76,11 @@ private fun FontIcon(size: Dp, feedName: String) {
) {
Text(
text = feedName.ifEmpty { " " }.first().toString(),
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.onPrimary,
fontSize = 10.sp,
style = MaterialTheme.typography.bodyMedium.merge(
color = MaterialTheme.colorScheme.onPrimary,
fontSize = 10.sp,
fontWeight = FontWeight.Bold,
)
)
}
}