Skip to content

Commit

Permalink
[MOD]
Browse files Browse the repository at this point in the history
 - mod DashboardCard
  • Loading branch information
KanuKim97 committed Jun 4, 2024
1 parent a4c6fb1 commit 9ffa355
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ fun LeagueDashboardTitle(modifier: Modifier = Modifier) {
@Composable
fun LeagueDashboardRow(modifier: Modifier = Modifier) {
Row(
modifier = modifier.fillMaxWidth().padding(end = 15.dp),
modifier = modifier
.fillMaxWidth()
.padding(start = 10.dp, end = 17.dp),
verticalAlignment = Alignment.CenterVertically
) {
Text(
Expand Down Expand Up @@ -205,7 +207,7 @@ fun LeagueDashboardItem(
Row(
modifier = modifier
.fillMaxWidth()
.padding(top = 2.dp, bottom = 2.dp, end = 17.dp),
.padding(top = 2.dp, bottom = 2.dp, end = 17.dp, start = 10.dp),
verticalAlignment = Alignment.CenterVertically
) {
Text(
Expand Down

0 comments on commit 9ffa355

Please sign in to comment.