fix text styling

This commit is contained in:
shibao 2022-02-23 20:35:18 -05:00
parent 9773ccc6ff
commit 5ca21c64fd
1 changed files with 5 additions and 3 deletions

View File

@ -72,9 +72,11 @@
<hr class="mb-4 hr" />
<p>
<div>
<%= if @container.ammo_groups |> Enum.empty?() do %>
<%= gettext("No ammo groups in this container") %>
<h2 class="mx-8 my-4 title text-lg text-primary-600">
<%= gettext("No ammo groups in this container") %>
</h2>
<% else %>
<div class="flex flex-wrap justify-center items-center">
<%= for ammo_group <- @container.ammo_groups do %>
@ -82,7 +84,7 @@
<% end %>
</div>
<% end %>
</p>
</div>
</div>
<%= if @live_action in [:edit] do %>