Skip to content

Commit

Permalink
fix: remove underlines from schedule minutes. Replace with subtle bac…
Browse files Browse the repository at this point in the history
…kground pills
  • Loading branch information
tarunsinghofficial committed Jan 31, 2025
1 parent 038dc1a commit d1de43c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/schedule-for-stop/RouteScheduleTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
{formatHour(hour)} <span class="text-sm text-gray-600 dark:text-gray-100">AM</span>
</td>
<td
class="flex items-start gap-3 border px-6 py-3 text-lg underline dark:border-gray-700 dark:text-white"
class="flex items-start gap-3 border px-6 py-3 text-lg dark:border-gray-700 dark:text-white"
>
{#each times as stopTime, index (index)}
<span>
<span class="rounded bg-gray-50 px-2 dark:bg-gray-800">
{extractMinutes(stopTime.arrivalTime)}
</span>
{/each}
Expand Down Expand Up @@ -98,10 +98,10 @@
{formatHour(hour)} <span class="text-sm text-gray-600 dark:text-gray-100">PM</span>
</td>
<td
class="flex items-start gap-3 border px-6 py-3 text-lg underline dark:border-gray-700 dark:text-white"
class="flex items-start gap-3 border px-6 py-3 text-lg dark:border-gray-700 dark:text-white"
>
{#each times as stopTime, index (index)}
<span>
<span class="rounded bg-gray-50 px-2 dark:bg-gray-800">
{extractMinutes(stopTime.arrivalTime)}
</span>
{/each}
Expand Down

0 comments on commit d1de43c

Please sign in to comment.