mirror of https://github.com/Ashinch/ReadYou.git
fix(ui): feedicon text style (#726)
This commit is contained in:
parent
ab0e07ad21
commit
8fb090e536
|
@ -76,9 +76,11 @@ private fun FontIcon(size: Dp, feedName: String) {
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = feedName.ifEmpty { " " }.first().toString(),
|
text = feedName.ifEmpty { " " }.first().toString(),
|
||||||
fontWeight = FontWeight.Bold,
|
style = MaterialTheme.typography.bodyMedium.merge(
|
||||||
color = MaterialTheme.colorScheme.onPrimary,
|
color = MaterialTheme.colorScheme.onPrimary,
|
||||||
fontSize = 10.sp,
|
fontSize = 10.sp,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue