Skip to content

Commit

Permalink
vertically align the exclusion string (#3084)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvllz committed Apr 2, 2024
1 parent fd8068a commit 76d4546
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions screen/accounts/src/main/java/com/ivy/accounts/AccountsTab.kt
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,6 @@ private fun AccountHeader(
Spacer(Modifier.width(8.dp))

Text(
modifier = Modifier
.align(Alignment.Bottom)
.padding(bottom = 4.dp),
text = stringResource(R.string.excluded),
style = UI.typo.c.style(
color = account.color.value.toComposeColor().dynamicContrast()
Expand Down
3 changes: 0 additions & 3 deletions screen/loans/src/main/java/com/ivy/loans/loan/LoansScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,6 @@ private fun LoanHeader(
Spacer(Modifier.width(8.dp))

Text(
modifier = Modifier
.align(Alignment.Bottom)
.padding(bottom = 4.dp),
text = loan.humanReadableType(),
style = UI.typo.c.style(
color = loan.color.toComposeColor().dynamicContrast()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -752,9 +752,6 @@ private fun Item(
Spacer(Modifier.width(8.dp))

Text(
modifier = Modifier
.align(Alignment.Bottom)
.padding(bottom = 12.dp),
text = stringRes(R.string.excluded),
style = UI.typo.c.style(
color = account.color.toComposeColor().dynamicContrast()
Expand Down

0 comments on commit 76d4546

Please sign in to comment.