fix info button at the top right

This commit is contained in:
Tobias Christian Nauen
2026-03-10 12:05:27 +01:00
parent efc88b45ca
commit a2cd911e97
2 changed files with 12 additions and 6 deletions

View File

@@ -143,11 +143,11 @@ function render(): void {
` : '';
app.innerHTML = `
<button class="info-btn" id="infoBtn" title="How to play">?</button>
<div class="game-container">
<header class="header">
<h1>Pokemon Type Quiz</h1>
<div class="header-actions">
<button class="info-btn" id="infoBtn" title="How to play">?</button>
<div class="stats">
<span class="stat">Streak: ${state.streak}</span>
<span class="stat">Accuracy: ${stats.accuracy.toFixed(1)}%</span>

View File

@@ -665,17 +665,21 @@ body {
/* Info Button */
.info-btn {
width: 32px;
height: 32px;
position: fixed;
top: 16px;
right: 16px;
width: 36px;
height: 36px;
background: var(--bg-accent);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: var(--text-primary);
font-family: 'Outfit', sans-serif;
font-size: 1rem;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
z-index: 100;
}
.info-btn:hover {
@@ -685,9 +689,11 @@ body {
.header-actions {
display: flex;
flex-direction: column;
flex-direction: row;
align-items: center;
gap: 12px;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
/* Info Screen */