mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* fix: replace hardcoded bg-white with bg-container in notification notice * fix: replace hardcoded text-white with fg-inverse in notification CTA * fix: replace hardcoded text-white with fg-inverse in text tooltip * fix: replace hardcoded bg-gray-900 text-white with bg-inverse fg-inverse in invitations form * fix: replace hardcoded bg-gray-800 text-white with bg-inverse fg-inverse in AI consent form * fix: replace hardcoded text-white with fg-inverse in changelog page * fix: replace hardcoded text-white and border-gray-500 with fg-inverse and border-secondary in investment tooltip * fix: replace hardcoded text-white with fg-inverse in holdings missing price tooltip * fix: replace hardcoded text-white and bg-gray-400 with fg-inverse and bg-surface-inset in settings profiles * fix: replace hardcoded bg-orange-500 text-white with bg-yellow-600 fg-inverse in settings hosting danger zone --------- Co-authored-by: Eran Avidor <eavidor@Eran-Avidor-MBP.lan>
12 lines
444 B
Plaintext
12 lines
444 B
Plaintext
<div data-controller="tooltip" data-tooltip-cross-axis-value="50">
|
|
<div class="flex items-center gap-1 text-warning">
|
|
<%= icon "info", size: "sm", color: "current" %>
|
|
<%= tag.span t(".missing_data"), class: "font-normal text-xs" %>
|
|
</div>
|
|
<div role="tooltip" data-tooltip-target="tooltip" class="tooltip bg-gray-700 text-sm p-2 rounded w-64">
|
|
<div class="fg-inverse">
|
|
<%= t(".description") %>
|
|
</div>
|
|
</div>
|
|
</div>
|