From 1a7154fab64e11db1ea5178c390fcbc375a90f55 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 17 Jul 2025 11:02:16 -0700 Subject: [PATCH] reply: add some space after reply box we need more room on mobile Fixes: https://github.com/damus-io/notedeck/issues/991 Signed-off-by: William Casarin --- crates/notedeck_columns/src/ui/note/reply.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/crates/notedeck_columns/src/ui/note/reply.rs b/crates/notedeck_columns/src/ui/note/reply.rs index 658d1bd4..d993a25d 100644 --- a/crates/notedeck_columns/src/ui/note/reply.rs +++ b/crates/notedeck_columns/src/ui/note/reply.rs @@ -111,6 +111,15 @@ impl<'a, 'd> PostReplyView<'a, 'd> { ui, ); + // + // NOTE(jb55): We add some space so that you can scroll to + // put the input box higher. This can happen in some + // situations where the input box gets covered or if its too + // large and things start breaking. I think this is an ok + // solution but there could be a better one. + // + ui.add_space(500.0); + post_response }) .inner