styling fixes

This commit is contained in:
Cory Dransfeldt 2023-03-11 21:41:32 -08:00
parent 331a0058d4
commit 6d91d2f42e
No known key found for this signature in database
4 changed files with 10 additions and 9 deletions

View file

@ -1,12 +1,12 @@
--- ---
layout: default layout: default
title: Blog title: Blog
templateEngineOverride: liquid,md
pagination: pagination:
data: collections.posts data: collections.posts
size: 10 size: 10
reverse: true reverse: true
alias: posts alias: posts
templateEngineOverride: liquid,md
--- ---
{% for post in pagination.items %} {% if post.data.published %} {% for post in pagination.items %} {% if post.data.published %}

View file

@ -7,11 +7,12 @@ pagination:
permalink: /tags/{{ tag }}/ permalink: /tags/{{ tag }}/
eleventyComputed: eleventyComputed:
title: '{{ tag }}' title: '{{ tag }}'
templateEngineOverride: liquid,md
--- ---
{% for post in collections[tag] %} {% for post in collections[tag] %}
<div class="mb-8 border-b border-gray-200 pb-8 dark:border-gray-700"> <div class="mb-8 border-b border-gray-200 pb-4 dark:border-gray-700">
<a class="no-underline" href="{{ post.url }}" <a class="no-underline" href="{{ post.url }}"
><h2 ><h2
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl" class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl"
@ -19,12 +20,9 @@ eleventyComputed:
{{ post.data.title }} {{ post.data.title }}
</h2> </h2>
</a> </a>
<div class="mt-2 text-sm"> <div class="h-14 flex items-center text-sm">
<em>{{ post.date | date: "%m.%d.%Y" }}</em> <span>{{ post.date | date: "%m.%d.%Y" }}</span>
</div> <span class="mx-1"></span>
<p class="mt-4">{{ post.data.post_excerpt }}
</p>
<div class="mt-4 flex items-center justify-between">
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more &rarr;</a> <a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more &rarr;</a>
</div> </div>
</div> </div>

View file

@ -6,7 +6,7 @@ title: Tags
{% for tag in collections.tagList %} {% for tag in collections.tagList %}
<span> <span>
<a href="/tags/{{ tag }}"><button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow mr-6 mb-4"> <a href="/tags/{{ tag }}" class="no-underline"><button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow mr-6 mb-4">
{{ tag }} {{ tag }}
</button> </button>
</a> </a>

View file

@ -53,7 +53,10 @@ module.exports = {
border: `1px solid ${theme('colors.gray.700')}`, border: `1px solid ${theme('colors.gray.700')}`,
}, },
code: { code: {
color: `${theme('colors.gray.50')} !important`,
backgroundColor: theme('colors.gray.900'), backgroundColor: theme('colors.gray.900'),
borderRadius: '0.25rem',
padding: '0.25rem',
}, },
}, },
}, },