diff --git a/src/app.html b/src/app.html index f273cc5..a5f9b76 100644 --- a/src/app.html +++ b/src/app.html @@ -2,7 +2,7 @@
- + %sveltekit.head% diff --git a/src/lib/components/RouteRow.svelte b/src/lib/components/RouteRow.svelte index ee2c863..59f272b 100644 --- a/src/lib/components/RouteRow.svelte +++ b/src/lib/components/RouteRow.svelte @@ -34,9 +34,11 @@ \ No newline at end of file diff --git a/src/lib/components/mapIcons/Bridge.svelte b/src/lib/components/mapIcons/Bridge.svelte index 025e13b..931e0b4 100644 --- a/src/lib/components/mapIcons/Bridge.svelte +++ b/src/lib/components/mapIcons/Bridge.svelte @@ -19,7 +19,7 @@ pipeline: { color: '#334155', stroke: '#1e293b', width: 4, text: '#334155'}, } - $: s = bridgeStyles[feature.category] || styles.minorRoad; + $: s = bridgeStyles[feature.category] || bridgeStyles.minorRoad; $: isOver = feature.position === 'over'; $: topY = 32 - (s.width / 2); @@ -36,9 +36,9 @@