Skip to content

Commit

Permalink
fix: Update link color for better visibility and adjust form field ma…
Browse files Browse the repository at this point in the history
…rgin for improved layout
  • Loading branch information
joshsadam committed Mar 6, 2025
1 parent 6ed091a commit 41d7619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/tailwind/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
}

@utility link {
@apply font-medium text-green-600 hover:underline dark:text-green-500;
@apply font-medium text-green-700 hover:underline dark:text-green-500;
}

@utility card {
Expand Down
2 changes: 1 addition & 1 deletion app/views/profiles/passwords/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</div>

<% invalid_password_confirmation = user.errors.include?(:password_confirmation) %>
<div class="form-field <%= 'invalid' if invalid_password_confirmation %>">
<div class="form-field mt-2 <%= 'invalid' if invalid_password_confirmation %>">
<%= form.label :password_confirmation %>
<%= form.password_field :password_confirmation,
required: true,
Expand Down

0 comments on commit 41d7619

Please sign in to comment.