diff options
author | David Gay <david@davidgay.org> | 2021-06-04 10:39:41 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-04 10:39:41 -0400 |
commit | 31cb12b7a9aee6581c21310dcf9adbf2c4c49ac4 (patch) | |
tree | aec13afce9576d156537b317b5928e80c236b0df /app/views/application | |
parent | 0371c5b9a0303d24f043ae84f827f760ac8680ae (diff) |
Reduce font size of timer and use display font
Diffstat (limited to 'app/views/application')
-rw-r--r-- | app/views/application/_timer.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
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> |