commit 660f89807680c24c3d96ef3c92bb5be1b07f05fe
parent 9dbf828b2ca9b0a7b642e64818c3735e8331588e
Author: William Casarin <jb55@jb55.com>
Date: Tue, 17 Feb 2026 15:56:34 -0800
reduce excessive chat margins for tablet and smaller screens
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/notedeck_dave/src/ui/dave.rs b/crates/notedeck_dave/src/ui/dave.rs
@@ -218,9 +218,9 @@ impl<'a> DaveUi<'a> {
fn chat_margin(&self, ctx: &egui::Context) -> i8 {
if self.compact || notedeck::ui::is_narrow(ctx) {
- 20
+ 8
} else {
- 100
+ 20
}
}