notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 4a1985d728d03a7d23adf975efd1f39b8171d6f8
parent 0855186a8a54bbb1b8548908729a7485c7f6f667
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 29 Nov 2024 11:36:47 -0800

text: make tiny text smaller

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/app_style.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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, } }