Skip to content

Commit 4cf599f

Browse files
committed
Reduce font size
1 parent a4b71c0 commit 4cf599f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/forum/_tags.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="mt-3 space-y-1" aria-labelledby="tags-menu">
66
<a
77
href="{{ route('forum', ['filter' => $filter]) }}"
8-
class="group flex items-center px-2 py-1 text-sm font-medium text-gray-600 hover:bg-white {{ (! isset($activeTag) ? 'bg-white text-lio-500 border-lio-500 border-l-2' : '') }}"
8+
class="group flex items-center px-2 py-1 text-xs font-medium text-gray-600 hover:bg-white {{ (! isset($activeTag) ? 'bg-white text-lio-500 border-lio-500 border-l-2' : '') }}"
99
>
1010
<span class="truncate">
1111
All
@@ -15,7 +15,7 @@ class="group flex items-center px-2 py-1 text-sm font-medium text-gray-600 hover
1515
@foreach ($tags as $tag)
1616
<a
1717
href="{{ route('forum.tag', [$tag->slug(), 'filter' => $filter]) }}"
18-
class="group flex items-center px-2 py-1 text-sm font-medium text-gray-600 hover:bg-white {{ (isset($activeTag) && $activeTag->id() === $tag->id() ? 'bg-white text-lio-500 border-lio-500 border-l-2' : '') }}"
18+
class="group flex items-center px-2 py-1 text-xs font-medium text-gray-600 hover:bg-white {{ (isset($activeTag) && $activeTag->id() === $tag->id() ? 'bg-white text-lio-500 border-lio-500 border-l-2' : '') }}"
1919
>
2020
<span class="truncate">
2121
{{ $tag->name() }}

0 commit comments

Comments
 (0)