Skip to content

Commit

Permalink
Merge pull request #112 from OneBusAway/fix/dark-mode-direction-arrow…
Browse files Browse the repository at this point in the history
…-visibility

fix: ensure direction arrows are visible in dark mode
  • Loading branch information
aaronbrethorst authored Nov 13, 2024
2 parents 3333129 + f261505 commit 6fce316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/map/StopMarker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<FontAwesomeIcon {icon} class=" text-black" />
{#if stop.direction}
<span class="direction-arrow {stop.direction.toLowerCase()} dark:text-white">
<FontAwesomeIcon icon={faCaretUp} />
<FontAwesomeIcon icon={faCaretUp} class="dark:text-white" />
</span>
{/if}
</span>
Expand All @@ -26,7 +26,7 @@
.custom-marker {
@apply h-8 w-8 rounded-md;
@apply bg-white/80 dark:bg-neutral-200;
@apply border border-2 border-gray-400;
@apply border-2 border-gray-400;
display: flex;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit 6fce316

Please sign in to comment.