Skip to content
8 changes: 6 additions & 2 deletions resources/views/timeline.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ class="h-4 w-4 transition-transform"
@foreach ($groupEntries as $i => $entry)
<li class="relative" wire:key="timeline-entry-{{ $entry->id }}">
@if ($i !== count($groupEntries) - 1)
<span aria-hidden="true" class="absolute left-[22px] top-9 bottom-0 w-px bg-gray-200 dark:bg-white/10"></span>
<span aria-hidden="true" class="absolute left-2 top-9 -bottom-2 flex w-7 justify-center">
<span class="w-px bg-gray-200 dark:bg-white/10"></span>
</span>
@endif
{!! $registry->resolve($entry)->render($entry) !!}
</li>
Expand All @@ -45,7 +47,9 @@ class="h-4 w-4 transition-transform"
@foreach ($entries as $i => $entry)
<li class="relative" wire:key="timeline-entry-{{ $entry->id }}">
@if ($i !== count($entries) - 1)
<span aria-hidden="true" class="absolute left-[22px] top-9 bottom-0 w-px bg-gray-200 dark:bg-white/10"></span>
<span aria-hidden="true" class="absolute left-2 top-9 -bottom-2 flex w-7 justify-center">
<span class="w-px bg-gray-200 dark:bg-white/10"></span>
</span>
@endif
{!! $registry->resolve($entry)->render($entry) !!}
</li>
Expand Down
Loading