diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | app/views/characters/show.html.erb | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 607ff93..f7769a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,8 @@ amenities, etc that are added unless they are special in some way. - Remaining duration of conditions and accumulated rested time are now expressed in "human" terms instead of seconds. - Blank line is now added to beginning of combat results instead of end, since it means more of the most-recent combat results can be visible when the box has a scroll bar. -- Character view: Reduced text size of headings. +- Character view: Reduced text size of headings, and changed the "Titles" and "Rankings" links to use the display font + (to better match other menu links). - Bazaar view: Reduced size (width) of number fields. - Hearth view: Amenities now have a lighter border color to differentiate them from the game container borders. diff --git a/app/views/characters/show.html.erb b/app/views/characters/show.html.erb index 7b37ef4..c507efd 100644 --- a/app/views/characters/show.html.erb +++ b/app/views/characters/show.html.erb @@ -2,7 +2,7 @@ <%= @character.name %> </h1> -<div class="text-lg mb-4"> +<div class="text-lg text-display mb-4"> <ul class="flex flex-row"> <li class="mr-2"><%= link_to "Titles", character_titles_path(@character) %></li> <li class="mr-2"><%= link_to "Rankings", character_rankings_path(@character) %></li> |