Skip to content

Commit

Permalink
darken lines
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Dec 4, 2024
1 parent 02aa396 commit e462510
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/pages/TraceRoutePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<!-- node that initiated traceroute -->
<li class="relative flex gap-x-4">
<div class="absolute left-0 top-3 flex w-12 justify-center -bottom-3">
<div class="w-px bg-gray-200"></div>
<div class="w-px bg-gray-300"></div>
</div>
<div class="my-auto relative flex flex-none items-center justify-center">
<div>
Expand All @@ -47,7 +47,7 @@
<!-- route toward nodes -->
<li v-for="(route, index) of traceRoute.data.route" class="relative flex gap-x-4">
<div class="absolute left-0 top-0 flex w-12 justify-center -bottom-3">
<div class="w-px bg-gray-200"></div>
<div class="w-px bg-gray-300"></div>
</div>
<div class="my-auto relative flex flex-none items-center justify-center">
<div>
Expand All @@ -70,7 +70,7 @@
<!-- node that replied to traceroute -->
<li v-if="traceRoute.from" class="relative flex gap-x-4">
<div class="absolute left-0 top-0 flex w-12 justify-center -bottom-3">
<div class="w-px bg-gray-200"></div>
<div class="w-px bg-gray-300"></div>
</div>
<div class="my-auto relative flex flex-none items-center justify-center">
<div>
Expand All @@ -93,7 +93,7 @@
<!-- route back nodes -->
<li v-for="(route, index) of traceRoute.data.routeBack" class="relative flex gap-x-4">
<div class="absolute left-0 top-0 flex w-12 justify-center -bottom-3">
<div class="w-px bg-gray-200"></div>
<div class="w-px bg-gray-300"></div>
</div>
<div class="my-auto relative flex flex-none items-center justify-center">
<div>
Expand Down Expand Up @@ -121,7 +121,7 @@
<!-- node that initiated traceroute -->
<li class="relative flex gap-x-4">
<div class="absolute left-0 top-0 flex w-12 justify-center h-6">
<div class="w-px bg-gray-200"></div>
<div class="w-px bg-gray-300"></div>
</div>
<div class="my-auto relative flex flex-none items-center justify-center">
<div>
Expand Down

0 comments on commit e462510

Please sign in to comment.