Skip to content

Commit

Permalink
Make entrypoint icons a little bit bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Exidex committed Oct 7, 2024
1 parent f970c9b commit 07aeea6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rust/client/src/ui/theme/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ impl<'a, Message: 'a> ThemableWidget<'a, Message> for Image<iced::advanced::imag
.height(theme.empty_view_image.size.height)
}
ImageStyle::MainListItemIcon => {
self.width(16)
.height(16)
self.width(18)
.height(18)
}
}.into()
}
Expand Down
4 changes: 2 additions & 2 deletions rust/client/src/ui/theme/space.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ impl<'a, Message: 'a> ThemableWidget<'a, Message> for Space {
fn themed(self, kind: ThemeKindSpace) -> Element<'a, Message> {
match kind {
ThemeKindSpace::MainListItemIcon => {
self.width(16)
.height(16)
self.width(18)
.height(18)
}
}.into()
}
Expand Down

0 comments on commit 07aeea6

Please sign in to comment.