summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/views/application/_timer.html.erb4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2bc97dc..50443e9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,7 @@ hearth amenities, etc that are being added unless they warrant explicit mention
(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.
+- Timer number is now smaller and uses the display font.
### Removed
- The Look view
diff --git a/app/views/application/_timer.html.erb b/app/views/application/_timer.html.erb
index f301ffc..06c4dd7 100644
--- a/app/views/application/_timer.html.erb
+++ b/app/views/application/_timer.html.erb
@@ -5,9 +5,9 @@
data-timer-activity-duration-value="<%= current_char.activity_duration %>"
data-timer-post-url-value="<%= finish_activity_url %>">
<div class="text-center">
- <span data-timer-target="timer" class="text-3xl"></span>
+ <span data-timer-target="timer" class="text-xl text-display"></span>
</div>
- <div class="border border-gray-800 h-4">
+ <div class="border border-gray-800 h-4 my-1">
<div data-timer-target="progressBar" class="bg-gray-600 h-full"
style="width: <%= current_char.percentage_of_activity_completed %>%">
</div>