diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-08 02:48:26 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-08 02:48:26 +0000 |
| commit | b517ca1a50745befc5c5248506b939647f7c8f47 (patch) | |
| tree | 5aefee7fe374f95a9eb6f62743b9ffee13dc9f0d | |
| parent | 984f61c9af752a5455551e7bc28cd82f4269f83b (diff) | |
Remove gray text
| -rw-r--r-- | source/_layouts/post.blade.php | 2 | ||||
| -rw-r--r-- | source/_partials/postStub.blade.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php index adecd6a..9b2b6c5 100644 --- a/source/_layouts/post.blade.php +++ b/source/_layouts/post.blade.php @@ -5,7 +5,7 @@ <header class="sm:flex sm:flex-row sm:justify-between p-4 pb-8 border-b border-green-100 border-dashed mb-8"> <div> <h1 class="text-green-300 text-3xl font-bold">{{$page->title }}</h1> - <p class="text-2xl text-gray-300">{{ $page->description }}</p> + <p class="text-2xl">{{ $page->description }}</p> </div> <div class="mt-8 sm:mt-0 text-right flex flex-row sm:flex-col"> <time class="inline-block p-2 order-2 sm:order-1 ml-2" datetime="{{ $page->getDate()->format('Y-m-d') }}"> diff --git a/source/_partials/postStub.blade.php b/source/_partials/postStub.blade.php index 05fd557..6eefb6a 100644 --- a/source/_partials/postStub.blade.php +++ b/source/_partials/postStub.blade.php @@ -2,7 +2,7 @@ <li class="sm:flex sm:flex-row sm:justify-between hover:bg-gray-700 p-4 pb-8"> <a title="Go to post" href="{{ $post->getUrl() }}"> <h4 class="text-green-300 text-3xl font-bold">{{$post->title }}</h4> - <p class="text-2xl text-gray-300">{{ $post->description }}</p> + <p class="text-2xl">{{ $post->description }}</p> </a> <div class="mt-8 sm:mt-0 text-right flex flex-row sm:flex-col"> <time class="inline-block p-2 order-2 sm:order-1 ml-2" datetime="{{ $post->getDate()->format('Y-m-d') }}"> |
