From 0f0f1c8639f9c6d7dc6ad01c926986cd10966280 Mon Sep 17 00:00:00 2001 From: evlist Date: Tue, 27 Sep 2022 09:10:08 +0200 Subject: [PATCH] Smoother stroke edges and different color for GPX tracks --- src/theme/map.css | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/theme/map.css b/src/theme/map.css index 7211932..48da65d 100644 --- a/src/theme/map.css +++ b/src/theme/map.css @@ -19,17 +19,19 @@ ion-button.get-location { } .input-file { - width: 0.1px; - height: 0.1px; - opacity: 0; - overflow: hidden; - position: absolute; - z-index: -1; + width: 0.1px; + height: 0.1px; + opacity: 0; + overflow: hidden; + position: absolute; + z-index: -1; } .track { fill: transparent; stroke-width: 4px; - stroke: green; + stroke: rgba(10, 1, 51,.8); + stroke-linecap: round; + stroke-linejoin: round; vector-effect: non-scaling-stroke; -} \ No newline at end of file +}