diff --git a/app/views/conferences/index.html.erb b/app/views/conferences/index.html.erb index 7c49f59284ee3b3f27cc7f7e3fc254a9517dc152..7de75c246d0cbff21a9cf3dfdbb55f6de3dc561d 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>