Skip to content

Commit e1e5f15

Browse files
committed
Add hover states to bookmarks icon on workshops index
1 parent 397cfdb commit e1e5f15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/workshops/_index_row.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
method: :delete,
3333
class: "inline-block",
3434
data: { turbo_confirm: "Remove bookmark?" } do %>
35-
<i class="fas fa-bookmark w-5 h-5 text-blue-500"></i>
35+
<i class="fas fa-bookmark w-5 h-5 text-blue-500 hover:text-gray-400"></i>
3636
<% end %>
3737
<% else %>
3838
<%= link_to bookmarks_path(
@@ -43,7 +43,7 @@
4343
),
4444
method: :post,
4545
class: "inline-block" do %>
46-
<i class="far fa-bookmark w-5 h-5 text-gray-400"></i>
46+
<i class="far fa-bookmark w-5 h-5 text-gray-400 hover:text-blue-500"></i>
4747
<% end %>
4848
<% end %>
4949
<%= link_to "#{ "[UNPUBLISHED] " if workshop.inactive? }#{ workshop.title }", link_route, class: "hover:underline" %>

0 commit comments

Comments
 (0)