feat(web): add home arrow link to game page header

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
funman300
2026-05-13 16:38:58 -07:00
parent 40818f5bd2
commit b82573e7b1
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -61,6 +61,16 @@ header {
.logo { font-size: 16px; font-weight: 700; }
.muted { color: var(--text-muted); font-size: 12px; }
.home-link {
color: var(--text-muted);
text-decoration: none;
font-size: 18px;
line-height: 1;
padding: 2px 4px;
border-radius: 4px;
transition: color 120ms, background 120ms;
}
.home-link:hover { color: var(--text); background: var(--panel-hi); }
button {
background: var(--panel-hi);
+1
View File
@@ -9,6 +9,7 @@
<body>
<header>
<div class="hud-left">
<a href="/" class="home-link" title="Home">&#8592;</a>
<span class="logo">Solitaire Quest</span>
<span id="hud-seed" class="muted"></span>
</div>