Skip to content

Commit

Permalink
fix: stopname styled to black color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunsinghofficial committed Sep 10, 2024
1 parent f3a5b19 commit 1bca64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/map/RouteMap.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
infoWindow = new google.maps.InfoWindow({
content: `<div>
<h3 class='h3'>${stop.name}</h3>
<h3 class='h3 dark:text-black text-black'>${stop.name}</h3>
<p>Arrival time: ${new Date(stopTime.arrivalTime * 1000).toLocaleTimeString()}</p>
</div>`
});
Expand Down

0 comments on commit 1bca64c

Please sign in to comment.