Skip to content

Commit

Permalink
* Updates: the padding between icon and text in shortcuts and menu
Browse files Browse the repository at this point in the history
  • Loading branch information
AjeshRPai committed Oct 17, 2023
1 parent b650522 commit 66901f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fun MySiteListItem(item: MenuItemState.MenuListItem, modifier: Modifier = Modifi
colorFilter =
if (item.disablePrimaryIconTint) null else ColorFilter.tint(MaterialTheme.colors.onSurface)
)
Spacer(Modifier.width(12.dp))
Spacer(Modifier.width(16.dp))
Text(
text = uiStringText(item.primaryText),
fontSize = 16.sp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ fun ShortcutStateRow(
else ColorFilter.tint(MaterialTheme.colors.onSurface)

)
Spacer(Modifier.width(12.dp))
Spacer(Modifier.width(16.dp))
Text(
text = uiStringText(state.label),
fontSize = 16.sp,
Expand Down

0 comments on commit 66901f8

Please sign in to comment.