From 65fd14da630c7d6d0197630cc5aecab9930bf928 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 May 2017 16:46:17 +0530 Subject: [PATCH] Fix item list font sizes --- src/pyj/book_list/theme.pyj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyj/book_list/theme.pyj b/src/pyj/book_list/theme.pyj index c44664e293..a580690c34 100644 --- a/src/pyj/book_list/theme.pyj +++ b/src/pyj/book_list/theme.pyj @@ -41,6 +41,6 @@ def get_color(name): def get_font_size(name): return { 'title': '1.4rem', - 'item-list-title': '1.2rem', - 'item-list-subtitle': '0.8 rem', + 'item-list-title': '1.1rem', + 'item-list-subtitle': '0.8rem', }[name]