From 4a1985d728d03a7d23adf975efd1f39b8171d6f8 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 29 Nov 2024 11:36:47 -0800 Subject: [PATCH] text: make tiny text smaller Signed-off-by: William Casarin --- src/app_style.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app_style.rs b/src/app_style.rs index 3a8fb9c..6387c9b 100644 --- a/src/app_style.rs +++ b/src/app_style.rs @@ -81,7 +81,7 @@ pub fn desktop_font_size(text_style: &NotedeckTextStyle) -> f32 { NotedeckTextStyle::Monospace => 13.0, NotedeckTextStyle::Button => 13.0, NotedeckTextStyle::Small => 12.0, - NotedeckTextStyle::Tiny => 11.0, + NotedeckTextStyle::Tiny => 10.0, } } @@ -95,7 +95,7 @@ pub fn mobile_font_size(text_style: &NotedeckTextStyle) -> f32 { NotedeckTextStyle::Monospace => 13.0, NotedeckTextStyle::Button => 13.0, NotedeckTextStyle::Small => 12.0, - NotedeckTextStyle::Tiny => 11.0, + NotedeckTextStyle::Tiny => 10.0, } }