diff options
author | David Gay <david@davidgay.org> | 2021-06-03 22:04:44 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-03 22:04:44 -0400 |
commit | 01797eadac7ec4bf5df06e0a025ae1af8b5ebdd1 (patch) | |
tree | b62acb1db348f57f4df27cf52183ad3d3d6496da /app | |
parent | a02cf6d28a28d312b8a4a8e8feb40eb03289a090 (diff) |
Lighten color of hearth amenity div borders
Diffstat (limited to 'app')
-rw-r--r-- | app/views/characters/hearth/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
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 %> |