Skip to content

Commit

Permalink
Fix SecondaryButton disabled state color
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Jun 12, 2024
1 parent d461f9b commit 7581bf9
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,11 @@ fun ButtonSecondaryTransparent(
Row (
verticalAlignment = Alignment.CenterVertically
){
captionSB_leah(
Text(
text = title,
maxLines = 1,
overflow = TextOverflow.Ellipsis
style = ComposeAppTheme.typography.captionSB,
overflow = TextOverflow.Ellipsis,
)
Icon(
modifier = Modifier.padding(start = 4.dp),
Expand All @@ -159,10 +160,11 @@ fun ButtonSecondaryTransparent(
)
}
} else {
captionSB_leah(
Text(
text = title,
maxLines = 1,
overflow = TextOverflow.Ellipsis
style = ComposeAppTheme.typography.captionSB,
overflow = TextOverflow.Ellipsis,
)
}
},
Expand Down

0 comments on commit 7581bf9

Please sign in to comment.