|
15 | 15 | <div class="my-5"> |
16 | 16 | <% if attribute.password_digest? -%> |
17 | 17 | <%%= form.label :password %> |
18 | | - <%%= form.password_field :password, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %> |
| 18 | + <%%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> |
19 | 19 | </div> |
20 | 20 |
|
21 | 21 | <div class="my-5"> |
22 | 22 | <%%= form.label :password_confirmation %> |
23 | | - <%%= form.password_field :password_confirmation, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %> |
| 23 | + <%%= form.password_field :password_confirmation, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> |
24 | 24 | <% elsif attribute.attachments? -%> |
25 | 25 | <%%= form.label :<%= attribute.column_name %> %> |
26 | | - <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, multiple: true, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %> |
| 26 | + <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, multiple: true, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> |
27 | 27 | <% else -%> |
28 | 28 | <%%= form.label :<%= attribute.column_name %> %> |
29 | 29 | <% if attribute.field_type == :text_area -%> |
30 | | - <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, rows: 4, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %> |
| 30 | + <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> |
31 | 31 | <% elsif attribute.field_type == :check_box -%> |
32 | 32 | <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block mt-2 h-5 w-5" %> |
33 | 33 | <% else -%> |
34 | | - <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %> |
| 34 | + <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> |
35 | 35 | <% end -%> |
36 | 36 | <% end -%> |
37 | 37 | </div> |
|
0 commit comments