Skip to content

Commit

Permalink
Merge pull request #135 from OneBusAway/fnf-redux
Browse files Browse the repository at this point in the history
Fit and finish
  • Loading branch information
aaronbrethorst authored Nov 24, 2024
2 parents e8c9c0d + 21f914f commit edbcaa7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/components/navigation/ModalPane.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
<div class="relative flex-1">
<div class="absolute inset-0 overflow-y-auto">
<slot></slot>
<div class="mb-4">
<!-- this empty footer shows a user that the content in the pane hasn't been cut off. -->
&nbsp;
</div>
</div>
</div>
</div>
Expand Down
8 changes: 5 additions & 3 deletions src/components/oba/TripDetailsPane.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,13 @@
/>
{/if}
</div>
<div class="ml-4 flex w-full items-center justify-between">
<div class="text-md font-semibold text-[#000000] dark:text-white">
<div class="ml-4 flex w-full items-center justify-between space-x-1">
<div class="text-md font-semibold dark:text-white">
{stopInfo[tripStop.stopId] ? stopInfo[tripStop.stopId].name : tripStop.stopId}
</div>
<div class="text-sm text-[#86858B]">{convertUnixToTime(tripStop.arrivalTime)}</div>
<div class="whitespace-nowrap text-sm text-gray-500">
{convertUnixToTime(tripStop.arrivalTime)}
</div>
</div>
</div>
{/each}
Expand Down

0 comments on commit edbcaa7

Please sign in to comment.