Remove unnecessary paddings in admin stats links

These elements were not aligned with the rest of the page due to their
paddings, caused by the `column` class.
This commit is contained in:
Javi Martín
2024-04-23 23:46:40 +02:00
parent 1ee30c0bb7
commit 1d11fa93d1

View File

@@ -110,20 +110,16 @@
</div>
<div class="small-12 column">
<% @event_types.each do |event| %>
<h3>
<%= link_to graph_link_text(event),
graph_admin_stats_path(event: event) %>
</h3>
<% end %>
</div>
<% @event_types.each do |event| %>
<h3>
<%= link_to graph_link_text(event),
graph_admin_stats_path(event: event) %>
</h3>
<% end %>
<% if feature?(:budgets) %>
<div class="small-12 column">
<h2><%= t "admin.stats.show.budgets_title" %></h2>
<%= budget_investments_chart_tag id: "budget_investments" %>
</div>
<h2><%= t "admin.stats.show.budgets_title" %></h2>
<%= budget_investments_chart_tag id: "budget_investments" %>
<% end %>
</div>
</div>