]> git.openstreetmap.org Git - rails.git/commitdiff
Fix lack of margin on changeset browsing messages
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 6 Sep 2023 15:43:20 +0000 (16:43 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 6 Sep 2023 15:51:25 +0000 (16:51 +0100)
The display area here uses negative margins to make the flush list
work, so we need to add them back in for normal text.

app/views/changesets/index.html.erb

index 43f194522e1c3426ac1de750a85c3efddf67e90a..97e6351a0a108561ac495534a8e30c75ab13cb11 100644 (file)
@@ -13,9 +13,9 @@
   </div>
 <% end -%>
 <% elsif params[:bbox] %>
-  <p><%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %></p>
+  <p class="mx-3"><%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %></p>
 <% elsif params[:display_name] %>
-  <p><%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %></p>
+  <p class="mx-3"><%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %></p>
 <% else %>
-  <p><%= t(params[:max_id] ? ".no_more" : ".empty") %></p>
+  <p class="mx-3"><%= t(params[:max_id] ? ".no_more" : ".empty") %></p>
 <% end %>