Skip to content

Commit

Permalink
fix(ui): feedicon text style (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashinch authored Jun 3, 2024
1 parent ab0e07a commit 8fb090e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/src/main/java/me/ash/reader/ui/component/FeedIcon.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
)
}
}
Expand Down

0 comments on commit 8fb090e

Please sign in to comment.