feat: add bug report issue template and report button on game grid

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
thibaud-leclere
2026-03-30 20:36:39 +02:00
parent c35e239450
commit 52c40f1ecc
3 changed files with 59 additions and 0 deletions

View File

@@ -540,3 +540,30 @@ body {
padding: 14px 32px;
font-size: 16px;
}
/* ── Game footer ── */
.game-footer {
display: flex;
justify-content: flex-end;
margin-top: 8px;
}
.btn-bug-report {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 12px;
font-family: 'Inter', sans-serif;
font-size: 12px;
font-weight: 500;
color: var(--text-faint);
text-decoration: none;
border-radius: 100px;
transition: color 0.15s, background 0.15s;
}
.btn-bug-report:hover {
color: var(--orange);
background: var(--surface-tint);
}