This commit is contained in:
Matt Gibson 2024-10-22 14:43:29 -07:00
parent 53c0c7d2ad
commit b0194028a8
No known key found for this signature in database
GPG key ID: 7CBCA182C13B0912

View file

@ -214,15 +214,17 @@ private fun NotificationSummaryItem(
) {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_account_initials_container),
tint = BitwardenTheme.colorScheme.filledButton.background,
contentDescription = null,
modifier = Modifier.size(40.dp),
)
Text(
text = notificationSummary.title.substring(0,2),
text = notificationSummary.title.substring(0, 2),
style = BitwardenTheme.typography.titleMedium
// Do not allow scaling
.copy(fontSize = 16.dp.toUnscaledTextUnit()),
color = BitwardenTheme.colorScheme.filledButton.background.toSafeOverlayColor(),
modifier = Modifier.clearAndSetSemantics { },
)
}