fix: incorrect checkbox dialog item text color

This commit is contained in:
Acclorite 2025-10-12 12:36:35 +03:00
parent a18cf65791
commit 59eae6e029
No known key found for this signature in database
GPG key ID: 6E54C611F6EE8593

View file

@ -50,7 +50,9 @@ fun CheckboxDialogItem(
StyledText(
text = title,
style = MaterialTheme.typography.bodyLarge,
style = MaterialTheme.typography.bodyLarge.copy(
color = MaterialTheme.colorScheme.onSurface
),
maxLines = 1
)
}