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