diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-04 22:10:13 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-03-04 22:10:13 +0000 |
| commit | 0b8eddf2cc42805c92d846e7d6566b18e5e3e554 (patch) | |
| tree | 47b544ca79a4f69516634e30ed22205de74c8c9c /source/_layouts/master.blade.php | |
| parent | 50c11e6d97eae5ef54e86742e0ed35443bb86afd (diff) | |
Try and reuse CSS
Diffstat (limited to 'source/_layouts/master.blade.php')
| -rw-r--r-- | source/_layouts/master.blade.php | 6 |
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> |
