Skip to content

Commit d172c3a

Browse files
committed
Fix pagination dark mode
1 parent c4752be commit d172c3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/components/incident-timeline.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
</div>
2121

2222
<div class="flex justify-between">
23-
<a href="{{ route('cachet.status-page', ['from' => $nextPeriodFrom]) }}" class="flex items-center gap-1 border py-2 px-3 rounded-lg text-zinc-500 dark:text-zinc-400 hover:underline text-sm">
23+
<a href="{{ route('cachet.status-page', ['from' => $nextPeriodFrom]) }}" class="flex items-center gap-1 border dark:border-zinc-400 py-2 px-3 rounded-lg text-zinc-500 dark:text-zinc-400 hover:underline text-sm">
2424
<x-heroicon-m-chevron-left class="size-5" />
2525
{{ __('Previous') }}
2626
</a>
2727

2828
@if($canPageForward)
29-
<a href="{{ route('cachet.status-page', ['from' => $nextPeriodTo]) }}" class="flex items-center gap-1 border py-2 px-3 rounded-lg text-zinc-500 dark:text-zinc-400 hover:underline text-sm">
29+
<a href="{{ route('cachet.status-page', ['from' => $nextPeriodTo]) }}" class="flex items-center gap-1 border dark:border-zinc-400 py-2 px-3 rounded-lg text-zinc-500 dark:text-zinc-400 hover:underline text-sm">
3030
{{ __('Next') }}
3131
<x-heroicon-m-chevron-right class="size-5" />
3232
</a>

0 commit comments

Comments
 (0)