fix: color of downvotes in split mode; closes #55

This commit is contained in:
Diego Beraldin 2023-10-10 13:00:10 +02:00
parent bf6692e762
commit ee7b26dd02

View File

@ -189,7 +189,7 @@ fun PostCardFooter(
append(downvoteText)
if (downVoted) {
addStyle(
style = SpanStyle(color = MaterialTheme.colorScheme.surfaceTint),
style = SpanStyle(color = MaterialTheme.colorScheme.tertiary),
start = upvoteText.length + 3,
end = upvoteText.length + 3 + downvoteText.length
)