1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00

Fix transfer note overflow style (#902)

This commit is contained in:
Jakub Kottnauer 2024-06-21 21:57:55 +02:00 committed by GitHub
parent e13c3d9271
commit 0bc0d87768
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>