From e2e6f4aada40289e1bc1aa6974ede1cce6b9c81c Mon Sep 17 00:00:00 2001
From: Felix Eckhofer <felix@eckhofer.com>
Date: Tue, 24 Dec 2024 02:16:56 +0100
Subject: [PATCH] Make it more obvious conferences are clickable

---
 app/views/conferences/index.html.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/conferences/index.html.erb b/app/views/conferences/index.html.erb
index 7c49f59..7de75c2 100644
--- a/app/views/conferences/index.html.erb
+++ b/app/views/conferences/index.html.erb
@@ -2,7 +2,7 @@
 <h1 class="text-xl my-4">Conferences</h1>
 <ul>
 <% @conferences.each do |conference| %>
-<li><%= link_to conference.name, conference_path(conference.slug), class: "inline-block px-4 py-2" %></li>
+<li><%= link_to conference.name, conference_path(conference.slug), class: "inline-block px-4 py-2 text-slate-500 hover:text-slate-900 hover:bg-slate-100 rounded-md" %></li>
 <% end %>
 </ul>
 </div>
-- 
GitLab