summaryrefslogtreecommitdiff
path: root/source/_layouts/master.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'source/_layouts/master.blade.php')
-rw-r--r--source/_layouts/master.blade.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php
index d215d03..7677d44 100644
--- a/source/_layouts/master.blade.php
+++ b/source/_layouts/master.blade.php
@@ -6,15 +6,15 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}">
</head>
- <body class="mb-8 lg:px-16 xl:px-32 bg-gray-900">
+ <body class="mb-8 lg:px-16 xl:px-32">
<div id="main-sidebar-container">
<article>@yield('article')</article>
<aside class="px-4">
- <p class="py-4 text-gray-200 text-2xl">
+ <p class="py-4 text-2xl">
<a class="block" href="/"><svg class="inline-block fill-current w-5 h-5"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8 20H3V10H0L10 0l10 10h-3v10h-5v-6H8v6z"/></svg> Home</a>
</p>
@foreach ($page->allCategories($posts) as $category)
- <a class="rounded p-1 text-gray-200 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a>
+ <a class="rounded p-1 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a>
@endforeach
</aside>
</div>