From 070917d8f7a34b6984cac81021e0946b9ba472cf Mon Sep 17 00:00:00 2001 From: Caleb Denio Date: Tue, 28 Apr 2026 08:30:55 -0600 Subject: [PATCH] fix station styling --- static/index.html | 7 ++++--- static/js/main.js | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/static/index.html b/static/index.html index 7eba1f8..a80e80c 100644 --- a/static/index.html +++ b/static/index.html @@ -90,9 +90,10 @@ } .station { - background-color: var(--color); - width: 10px; - height: 10px; + background-color: white; + outline: 2px solid var(--color); + width: 5px; + height: 5px; border-radius: 999px; } diff --git a/static/js/main.js b/static/js/main.js index dbe9ac5..d47f819 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -60,7 +60,8 @@ for (const station of stations) { zIndexOffset: 2000, icon: L.divIcon({ className: "", - html: `
` + html: `
`, + iconSize: [5, 5], }) }).addTo(map) }