Files
linkvault/app/templates/_topbar.html
Erik Thiele b85e0bc256 Shrink header logo to match LinkVault text height
24px was noticeably taller than the brand text; 18px lines up with
the font-size (1.2rem) much better.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-31 16:26:07 +02:00

20 lines
735 B
HTML

{% import "_icons.html" as icons %}
<header class="topbar">
<a href="/" class="brand" style="text-decoration:none;">
<img src="/static/favicon.svg" alt="" width="18" height="18" style="vertical-align:-3px; margin-right:5px;">Link<span>Vault</span>
</a>
<div class="topbar-right">
<nav class="mode-switch">
<a href="/" class="mode-tab {% if request.url.path == '/' %}active{% endif %}">
{{ icons.grid(size=14) }} Links
</a>
<a href="/prompts" class="mode-tab {% if request.url.path.startswith('/prompts') %}active{% endif %}">
{{ icons.sparkles(size=14) }} Prompts
</a>
</nav>
<div class="user-info">
{% include "_topbar_actions.html" %}
</div>
</div>
</header>