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

Fix for user menu dark mode text
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:
Josh Pigford 2025-04-18 09:21:57 -05:00
parent d22a16d8de
commit 8985592967
2 changed files with 8 additions and 8 deletions

View file

@ -541,10 +541,10 @@
}
.btn--ghost {
@apply border border-transparent text-primary hover:button-bg-ghost-hover;
@apply border border-transparent hover:button-bg-ghost-hover;
@variant theme-dark {
@apply fg-primary hover:button-bg-ghost-hover;
@apply hover:fg-inverse hover:button-bg-ghost-hover;
}
}
@ -725,7 +725,7 @@
@apply bg-gray-50;
@variant theme-dark {
@apply bg-gray-800;
@apply bg-gray-800 fg-inverse;
}
}

View file

@ -37,28 +37,28 @@
<div class="p-1">
<%= link_to settings_profile_path(return_to: request.fullpath), class: "btn btn--ghost flex gap-2 items-center" do %>
<%= lucide_icon("settings", class: "w-5 h-5 text-secondary shrink-0") %>
<span class="text-primary text-sm">Settings</span>
<span class="text-sm">Settings</span>
<% end %>
<%= link_to changelog_path, class: "btn btn--ghost flex gap-2 items-center" do %>
<%= lucide_icon("box", class: "w-5 h-5 text-secondary shrink-0") %>
<span class="text-primary text-sm">Changelog</span>
<span class="text-sm">Changelog</span>
<% end %>
<%= link_to feedback_path, class: "btn btn--ghost flex gap-2 items-center" do %>
<%= lucide_icon("megaphone", class: "w-5 h-5 text-secondary shrink-0") %>
<span class="text-primary text-sm">Feedback</span>
<span class="text-sm">Feedback</span>
<% end %>
<% if self_hosted? %>
<%= link_to "https://link.maybe.co/discord", class: "btn btn--ghost flex gap-2 items-center" do %>
<%= lucide_icon("message-square-more", class: "w-5 h-5 text-secondary shrink-0") %>
<span class="text-primary text-sm">Contact</span>
<span class="text-sm">Contact</span>
<% end %>
<% else %>
<%= link_to "mailto:hello@maybefinance.com", class: "btn btn--ghost flex gap-2 items-center", onclick: "Intercom('showNewMessage'); return false;" do %>
<%= lucide_icon("message-square-more", class: "w-5 h-5 text-secondary shrink-0") %>
<span class="text-primary text-sm">Contact</span>
<span class="text-sm">Contact</span>
<% end %>
<% end %>
</div>