From e49fb04e3a98217affa7018d08a254597242b670 Mon Sep 17 00:00:00 2001 From: Frank Tovar Date: Wed, 28 Jan 2026 16:22:12 +0100 Subject: [PATCH] Small UX fixes, clean up after smoke test --- scripts/smoke.ps1 | 3 +++ wwwroot/styles.css | 2 ++ 2 files changed, 5 insertions(+) diff --git a/scripts/smoke.ps1 b/scripts/smoke.ps1 index 8080408..2913b28 100644 --- a/scripts/smoke.ps1 +++ b/scripts/smoke.ps1 @@ -75,4 +75,7 @@ Write-Host "`n7) Results phase" Invoke-Json -Method POST -Path "/api/admin/phase" -Headers @{ "X-Admin-Key" = $AdminKey } -Body @{ phase = "Results" } | Out-Host Invoke-Json -Method GET -Path "/api/results" | Out-Host +Write-Host "`n8) Admin factory reset (clears players, suggestions, votes)" +Invoke-Json -Method POST -Path "/api/admin/factory-reset" -Headers @{ "X-Admin-Key" = $AdminKey } | Out-Host + Write-Host "`nSmoke test completed." diff --git a/wwwroot/styles.css b/wwwroot/styles.css index 5e35bcb..3034d1c 100644 --- a/wwwroot/styles.css +++ b/wwwroot/styles.css @@ -283,6 +283,7 @@ input[type="range"].full-slider::-moz-range-track { width: 32px; height: 32px; font-size: 16px; + padding: 0; cursor: pointer; } @@ -308,6 +309,7 @@ input[type="range"].full-slider::-moz-range-track { object-fit: cover; border-radius: 6px; border: 1px solid #1f2937; + cursor: pointer; } .results-table .game-meta { display: flex; flex-direction: column; gap: 2px; } .results-table .title-line { font-weight: 700; }