From ba85a11d1abba9dcec86f9030c179e29e5fb987e Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Tue, 27 Jan 2026 12:51:10 -0500 Subject: [PATCH] Refine golf ball logo and add static route - Adjust dimple size and spacing for balanced appearance - Enlarge card suit symbols (font-size 32) in single row - Fine-tune symbol positioning and spacing - Increase margin between logo and golfer emoji - Add /golfball-logo.svg static file route Co-Authored-By: Claude Opus 4.5 --- client/golfball-logo.svg | 110 ++++++++++++++------------------------- client/style.css | 2 +- server/main.py | 4 ++ 3 files changed, 43 insertions(+), 73 deletions(-) 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():