diff options
| author | dev | 2026-06-27 15:09:56 +0200 |
|---|---|---|
| committer | dev | 2026-06-27 15:09:56 +0200 |
| commit | 13d5ecf7c4a450d912e3e763adad4251d93b6724 (patch) | |
| tree | ef12fb5f6caf866d74f868d9c14916367beaecaa /resources/views/topicpopular.blade.php | |
| parent | 68fd4d706ab146b5062db7f44477ce11e586673d (diff) | |
| download | curious-13d5ecf7c4a450d912e3e763adad4251d93b6724.tar.gz | |
style: wrap /topics in card with header, use solid pink btn-primary on both /topics and /popular/topics
Diffstat (limited to 'resources/views/topicpopular.blade.php')
| -rw-r--r-- | resources/views/topicpopular.blade.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/topicpopular.blade.php b/resources/views/topicpopular.blade.php index b8f0224..59ade5b 100644 --- a/resources/views/topicpopular.blade.php +++ b/resources/views/topicpopular.blade.php @@ -34,7 +34,7 @@ html { <div class="card-body"> @foreach ($topics as $topic) @if ( "" != $topic->name ) - <a href="{{ route('topic', $topic->name) }}" class="btn btn-lg btn-outline-pink mx-1 my-1">{{ ucwords($topic->name) }} ({{ $topic->count }} Articles)</a> + <a href="{{ route('topic', $topic->name) }}" class="btn btn-lg btn-primary mx-1 my-1">{{ ucwords($topic->name) }} ({{ $topic->count }} Articles)</a> @endif @endforeach </div> |
