diff --git a/client/golfball-logo.svg b/client/golfball-logo.svg index 6b0eeb4..8800144 100644 --- a/client/golfball-logo.svg +++ b/client/golfball-logo.svg @@ -1,11 +1,11 @@ - + - + - - - - + + + + @@ -16,86 +16,52 @@ - + - + - + - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - + + + + + diff --git a/client/style.css b/client/style.css index 8ab06e6..0b4fc76 100644 --- a/client/style.css +++ b/client/style.css @@ -82,7 +82,7 @@ body { width: 1.1em; height: 1.1em; vertical-align: middle; - margin-right: 0.1em; + margin-right: 18px; filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.25)); } diff --git a/server/main.py b/server/main.py index 850dea7..c068854 100644 --- a/server/main.py +++ b/server/main.py @@ -964,6 +964,10 @@ if os.path.exists(client_path): async def serve_leaderboard_js(): return FileResponse(os.path.join(client_path, "leaderboard.js"), media_type="application/javascript") + @app.get("/golfball-logo.svg") + async def serve_golfball_logo(): + return FileResponse(os.path.join(client_path, "golfball-logo.svg"), media_type="image/svg+xml") + # Admin dashboard @app.get("/admin") async def serve_admin():