mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 14:05:20 +02:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
7 lines
370 B
Text
7 lines
370 B
Text
<header class="flex justify-between items-center p-4">
|
|
<%= image_tag "logo.svg", class: "h-[22px]" %>
|
|
<div class="flex items-center gap-2">
|
|
<%= lucide_icon "log-in", class: "w-5 h-5 shrink-0 text-secondary gap-2" %>
|
|
<%= button_to t(".sign_out"), session_path(Current.session), method: :delete, class: "text-sm text-primary font-medium" %>
|
|
</div>
|
|
</header>
|