Skip to content

Commit

Permalink
Fix transfer note overflow style (maybe-finance#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkottnauer authored Jun 21, 2024
1 parent e13c3d9 commit 0bc0d87
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/views/account/transfers/_transfer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@

<div class="pt-2 divide-y divide-alpha-black-200">
<% transfer.transactions.each do |transaction| %>
<div class="py-3 flex items-center justify-between">
<%= render "transactions/name", transaction: transaction %>
<%= render "transactions/amount", transaction: transaction %>
<div class="py-3 grid grid-cols-12 items-center">
<div class="col-span-10">
<%= render "transactions/name", transaction: transaction %>
</div>
<div class="col-span-2 ml-auto">
<%= render "transactions/amount", transaction: transaction %>
</div>
</div>
<% end %>
</div>
Expand Down

0 comments on commit 0bc0d87

Please sign in to comment.