mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-26 00:29:40 +02:00
Fix for user menu dark mode text
This commit is contained in:
parent
d22a16d8de
commit
8985592967
2 changed files with 8 additions and 8 deletions
|
@ -541,10 +541,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn--ghost {
|
.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 {
|
@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;
|
@apply bg-gray-50;
|
||||||
|
|
||||||
@variant theme-dark {
|
@variant theme-dark {
|
||||||
@apply bg-gray-800;
|
@apply bg-gray-800 fg-inverse;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,28 +37,28 @@
|
||||||
<div class="p-1">
|
<div class="p-1">
|
||||||
<%= link_to settings_profile_path(return_to: request.fullpath), class: "btn btn--ghost flex gap-2 items-center" do %>
|
<%= 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") %>
|
<%= 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 %>
|
<% end %>
|
||||||
|
|
||||||
<%= link_to changelog_path, class: "btn btn--ghost flex gap-2 items-center" do %>
|
<%= 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") %>
|
<%= 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 %>
|
<% end %>
|
||||||
|
|
||||||
<%= link_to feedback_path, class: "btn btn--ghost flex gap-2 items-center" do %>
|
<%= 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") %>
|
<%= 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 %>
|
<% end %>
|
||||||
|
|
||||||
<% if self_hosted? %>
|
<% if self_hosted? %>
|
||||||
<%= link_to "https://link.maybe.co/discord", class: "btn btn--ghost flex gap-2 items-center" do %>
|
<%= 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") %>
|
<%= 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 %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to "mailto:hello@maybefinance.com", class: "btn btn--ghost flex gap-2 items-center", onclick: "Intercom('showNewMessage'); return false;" do %>
|
<%= 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") %>
|
<%= 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 %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue