mirror of
https://github.com/bitwarden/android.git
synced 2025-01-07 08:47:36 +03:00
wip
This commit is contained in:
parent
53c0c7d2ad
commit
b0194028a8
1 changed files with 3 additions and 1 deletions
|
@ -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 { },
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue