]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_tag_details.html.erb
Fix rubocop warning
[rails.git] / app / views / browse / _tag_details.html.erb
index 9c3fbbfc206961291a77d8bdb37f0dc75fdffc18..cb876198c310bbe0b7c7f4d50da7bdd20453fd95 100644 (file)
@@ -1,6 +1,8 @@
 <% unless tag_details.empty? %>
-  <h4><%= t '.tags' %></h4>
-  <table class='browse-tag-list'>
-    <%= render :partial => "tag", :collection => tag_details.sort %>
-  </table>
+  <h4><%= t ".tags" %></h4>
+  <div class='mb-3 border border-secondary-subtle rounded overflow-hidden'>
+    <table class='mb-0 browse-tag-list table align-middle'>
+      <%= render :partial => "browse/tag", :collection => tag_details.sort %>
+    </table>
+  </div>
 <% end %>