summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/views/characters/hearth/index.html.erb2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7cf093a..607ff93 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,7 @@ amenities, etc that are added unless they are special in some way.
results can be visible when the box has a scroll bar.
- Character view: Reduced text size of headings.
- 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.
### Removed
- The Look view
diff --git a/app/views/characters/hearth/index.html.erb b/app/views/characters/hearth/index.html.erb
index b8478f1..ee5b07d 100644
--- a/app/views/characters/hearth/index.html.erb
+++ b/app/views/characters/hearth/index.html.erb
@@ -8,7 +8,7 @@
<div class="grid grid-cols-1 lg:grid-cols-2 gap-4">
<% @all_amenities.each do |ha| %>
- <div class="border-2 border-gray-800 rounded p-4">
+ <div class="border-2 border-gray-600 rounded p-4">
<h2 class="text-lg font-bold"><%= ha.name %></h2>
<% built_amenity = current_char.hearth.built_hearth_amenities.find_by(hearth_amenity: ha) %>
<% if built_amenity %>