Skip to content

Commit

Permalink
Merge pull request #1673 from android/dt/fix-icons
Browse files Browse the repository at this point in the history
Reduce icon sizes
  • Loading branch information
dturner authored Oct 21, 2024
2 parents a01289d + bd557fd commit ecea15d
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 @@ -54,7 +54,7 @@ fun InterestsItem(
) {
ListItem(
leadingContent = {
InterestsIcon(topicImageUrl, iconModifier.size(64.dp))
InterestsIcon(topicImageUrl, iconModifier.size(48.dp))
},
headlineContent = {
Text(text = name)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private fun TopicHeader(name: String, description: String, imageUrl: String) {
contentDescription = null,
modifier = Modifier
.align(Alignment.CenterHorizontally)
.size(216.dp)
.size(132.dp)
.padding(bottom = 12.dp),
)
Text(name, style = MaterialTheme.typography.displayMedium)
Expand Down

0 comments on commit ecea15d

Please sign in to comment.