1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00

Fix dark mode text hover styles
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions

This commit is contained in:
Zach Gollwitzer 2025-06-09 18:39:04 -04:00
parent 9fabcf4c72
commit 019a0d873c
4 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@
<%= link_to entry.name,
entry_path(entry),
data: { turbo_frame: "drawer", turbo_prefetch: false },
class: "hover:underline hover:text-gray-800" %>
class: "hover:underline" %>
</div>
<% end %>
</div>

View file

@ -43,7 +43,7 @@
turbo_frame: "drawer",
turbo_prefetch: false
},
class: "hover:underline hover:text-gray-800"
class: "hover:underline"
) %>
<% if entry.excluded %>

View file

@ -12,7 +12,7 @@
<%= button_to transfer_path(transaction.transfer, transfer: { status: "confirmed" }),
method: :patch,
class: "text-secondary hover:text-gray-800 flex items-center justify-center cursor-pointer",
class: "text-secondary flex items-center justify-center cursor-pointer",
title: "Confirm match" do %>
<%= icon "check", size: "sm", class: "text-secondary hover:text-primary" %>
<% end %>
@ -20,7 +20,7 @@
<%= button_to transfer_path(transaction.transfer, transfer: { status: "rejected" }),
method: :patch,
data: { turbo: false },
class: "text-secondary hover:text-gray-800 flex items-center justify-center cursor-pointer",
class: "text-secondary hover:text-primary flex items-center justify-center cursor-pointer",
title: "Reject match" do %>
<%= icon "x", size: "sm", class: "text-subdued hover:text-primary" %>
<% end %>

View file

@ -20,7 +20,7 @@
<%= link_to entry.name,
entry_path(entry),
data: { turbo_frame: "drawer", turbo_prefetch: false },
class: "hover:underline hover:text-gray-800" %>
class: "hover:underline" %>
</div>
</div>
</div>