From 6e8e4e9c389f06125353d25b70b49be5e5738a70 Mon Sep 17 00:00:00 2001 From: Michael Mallan Date: Wed, 2 Oct 2024 07:31:42 +0100 Subject: [PATCH] gui: reduce sidebar logo size --- gui/src/app/view/mod.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gui/src/app/view/mod.rs b/gui/src/app/view/mod.rs index 9a0969d10..ad8302ce5 100644 --- a/gui/src/app/view/mod.rs +++ b/gui/src/app/view/mod.rs @@ -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)