From c5cc2f923ccacdfe55a97782ff4497461e9852e4 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 24 May 2024 13:21:22 -0700 Subject: [PATCH] mobile: a tad more padding at the top Signed-off-by: William Casarin --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 55a9b01..fb7bc0f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -758,7 +758,7 @@ fn render_damus_mobile(ctx: &egui::Context, app: &mut Damus) { fn main_panel(style: &Style) -> egui::CentralPanel { let inner_margin = egui::Margin { - top: if crate::ui::is_mobile() { 40.0 } else { 0.0 }, + top: if crate::ui::is_mobile() { 50.0 } else { 0.0 }, left: 0.0, right: 0.0, bottom: 0.0,