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) }