fix: Fix overflow in long blog posts
This commit is contained in:
parent
10408989ea
commit
6b18af00a2
@ -9,10 +9,10 @@
|
||||
|
||||
{% seo %}
|
||||
</head>
|
||||
<body class="min-h-screen h-full flex flex-col">
|
||||
{% include header.html %}
|
||||
<body>
|
||||
<div class="flex flex-col">
|
||||
{% include header.html %}
|
||||
|
||||
<div class="flex-grow">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
|
@ -2,13 +2,13 @@
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="w-full flex flex-row justify-center mt-2">
|
||||
<div class="w-full lg:w-3/4 px-8 flex flex-col items-start">
|
||||
<div class="w-full md:max-w-prose mt-2 mx-auto">
|
||||
<div class="px-8">
|
||||
<h1 class="text-3xl">{{ page.title }}</h1>
|
||||
|
||||
<span>Posted by <span class="italic">{{ page.author }}</span> on {{ page.date | date: "%d.%m.%Y" }}</span>
|
||||
|
||||
<article class="mt-5 prose lg:prose-xl max-w-none">
|
||||
<article class="mt-5 prose lg:prose-lg">
|
||||
{{ page.content }}
|
||||
</article>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user