diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-02 00:21:55 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-02 00:21:55 +0000 |
| commit | 9cbf8aa8a1ab3627e52f6f93a2292bfab099db43 (patch) | |
| tree | fb65d4977d1db4070174c95916426990ffc5d632 /source/index.blade.php | |
| parent | 615b4ff16c8178c8c48b0a792c4f4691502e39e4 (diff) | |
CSS enhancements
Diffstat (limited to 'source/index.blade.php')
| -rw-r--r-- | source/index.blade.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/index.blade.php b/source/index.blade.php index 765e3b5..06bab2e 100644 --- a/source/index.blade.php +++ b/source/index.blade.php @@ -10,12 +10,12 @@ pagination: @include('_partials.postStub') @endforeach </ol> - <nav class="mt-8 flex justify-between text-gray-400"> + <nav class="mt-3 px-4 flex justify-between text-gray-400 text-2xl"> @if ($pagination->previous) - <a class="p-1" href="{{ $pagination->previous }}"><svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 13h8V7h-8V2l-8 8 8 8v-5z"/></svg> See more recent posts</a> + <a href="{{ $pagination->previous }}"><svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 13h8V7h-8V2l-8 8 8 8v-5z"/></svg> See more recent posts</a> @endif @if ($pagination->next) - <a class="p-1 " href="{{ $pagination->next }}">See older posts <svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 7H2v6h8v5l8-8-8-8v5z"/></svg></a> + <a href="{{ $pagination->next }}">See older posts <svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 7H2v6h8v5l8-8-8-8v5z"/></svg></a> @endif </nav> @endsection |
