mirror of
https://github.com/we-promise/sure.git
synced 2026-04-14 17:44:07 +00:00
* set cursor to pointer on buttons in imports flow * add hover bg change on buttons to indicate action * add rounded hover background to x
8 lines
405 B
Plaintext
8 lines
405 B
Plaintext
<%= form_with model: @import do |form| %>
|
|
<div class="mb-4">
|
|
<%= form.collection_select :account_id, Current.family.accounts.alphabetically, :id, :name, { prompt: t(".select_account"), label: t(".account"), required: true } %>
|
|
</div>
|
|
|
|
<%= form.submit t(".next"), class: "px-4 py-2 block w-full rounded-lg bg-gray-900 text-white text-sm font-medium cursor-pointer hover:bg-gray-700" %>
|
|
<% end %>
|