diff options
author | David Gay <david@davidgay.org> | 2021-06-04 10:47:02 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-04 10:47:02 -0400 |
commit | 3a845f15a7f465f629224077d989f5e7950e148e (patch) | |
tree | e63a8700db91bfd7537a76084ee3c414b316acfe | |
parent | 341737fc160a77a282713e76cc6f522e36f122b5 (diff) |
Reduce text size and vertical margin of "Stop" button
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/views/application/_timer.html.erb | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 50443e9..89785c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ hearth amenities, etc that are being added unless they warrant explicit mention - 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. +- Reduced size and vertical margin of "Stop" button, to make more room for other things that go in that box now. ### Removed - The Look view diff --git a/app/views/application/_timer.html.erb b/app/views/application/_timer.html.erb index ca12a77..d683c6a 100644 --- a/app/views/application/_timer.html.erb +++ b/app/views/application/_timer.html.erb @@ -21,8 +21,8 @@ <div><%= most_recent_cs.xp_to_next_level %> XP to next level</div> </div> - <div class="text-center my-3"> - <%= button_to "Stop", stop_activity_path %> + <div class="text-center my-2"> + <%= button_to "Stop", stop_activity_path, class: "text-sm" %> </div> <div class="text-center text-xs my-2"> |