summaryrefslogtreecommitdiff
path: root/source/_layouts/master.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-03-02 00:21:55 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-03-02 00:21:55 +0000
commit9cbf8aa8a1ab3627e52f6f93a2292bfab099db43 (patch)
treefb65d4977d1db4070174c95916426990ffc5d632 /source/_layouts/master.blade.php
parent615b4ff16c8178c8c48b0a792c4f4691502e39e4 (diff)
CSS enhancements
Diffstat (limited to 'source/_layouts/master.blade.php')
-rw-r--r--source/_layouts/master.blade.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php
index 3c34cff..d215d03 100644
--- a/source/_layouts/master.blade.php
+++ b/source/_layouts/master.blade.php
@@ -2,14 +2,16 @@
<!doctype html>
<html lang="en">
<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}">
</head>
- <body class="px-8 lg:px-16 xl:px-32 bg-gray-900">
+ <body class="mb-8 lg:px-16 xl:px-32 bg-gray-900">
<div id="main-sidebar-container">
<article>@yield('article')</article>
- <aside>
- <p class="py-4 text-gray-200">
- <a class="block" href="/"><svg class="inline-block fill-current w-4 h-4"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8 20H3V10H0L10 0l10 10h-3v10h-5v-6H8v6z"/></svg> Home</a>
+ <aside class="px-4">
+ <p class="py-4 text-gray-200 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>