Skip to content

Commit

Permalink
gui: reduce sidebar logo size
Browse files Browse the repository at this point in the history
  • Loading branch information
jp1ac4 committed Oct 2, 2024
1 parent 82e47dc commit 6e8e4e9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion gui/src/app/view/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,14 @@ pub fn sidebar<'a>(menu: &Menu, cache: &'a Cache) -> Container<'a, Message> {
Column::new()
.push(
Column::new()
.push(Container::new(retailer_logo()).padding(10))
.push(
Container::new(
retailer_logo()
.height(Length::Fixed(200.0))
.width(Length::Fixed(200.0)),
)
.padding(10),
)
.push(home_button)
.push(spend_button)
.push(receive_button)
Expand Down

0 comments on commit 6e8e4e9

Please sign in to comment.