fix: spacing

This commit is contained in:
Cory Dransfeldt 2024-11-12 18:20:53 -08:00
parent 5f43e417d1
commit 89b8e9dcad
No known key found for this signature in database
8 changed files with 27 additions and 28 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.0.0", "version": "3.0.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.0.0", "version": "3.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@11ty/eleventy-fetch": "4.0.1", "@11ty/eleventy-fetch": "4.0.1",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.0.0", "version": "3.0.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {

View file

@ -1,18 +1,22 @@
.mastodon-post-wrapper { mastodon-post {
& dl, width: 100%;
& dt {
display: flex;
}
& dl { .mastodon-post-wrapper {
align-items: center; & dl,
& dt {
display: flex;
}
& dd { & dl {
margin-left: var(--spacing-xs); align-items: center;
&:not(:last-child) { & dd {
margin-right: var(--spacing-lg); margin-left: var(--spacing-xs);
&:not(:last-child) {
margin-right: var(--spacing-lg);
}
} }
} }
} }
} }

View file

@ -33,7 +33,7 @@
<li> <li>
<a href="{{ item.url }}">{{ item.title | default: item.name }}</a> <a href="{{ item.url }}">{{ item.title | default: item.name }}</a>
{% if key == "artists" and item.total_plays > 0 %} {% if key == "artists" and item.total_plays > 0 %}
: <strong class="highlight-text"> <strong class="highlight-text">
{{ item.total_plays }} {{ item.total_plays | pluralize: "play" }} {{ item.total_plays }} {{ item.total_plays | pluralize: "play" }}
</strong> </strong>
{% elsif key == "books" %} {% elsif key == "books" %}

View file

@ -29,11 +29,11 @@
{%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%} {%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%}
{%- endcase -%} {%- endcase -%}
{%- assign escapedPageDescription = pageDescription | escape -%} {%- assign escapedPageDescription = pageDescription | escape -%}
<title data-dynamic="title">{{ pageTitle }}</title> <title>{{ pageTitle }}</title>
<link rel="canonical" href="{{ fullUrl }}" /> <link rel="canonical" href="{{ fullUrl }}" />
<meta property="og:title" content="{{ pageTitle }}" data-dynamic="og:title" /> <meta property="og:title" content="{{ pageTitle }}" />
<meta name="description" content="{{ escapedPageDescription }}" data-dynamic="description" /> <meta name="description" content="{{ escapedPageDescription }}" />
<meta property="og:description" content="{{ escapedPageDescription }}" data-dynamic="og:description" /> <meta property="og:description" content="{{ escapedPageDescription }}" />
<meta property="og:type" content="article" /> <meta property="og:type" content="article" />
<meta property="og:url" content="{{ fullUrl }}" data-dynamic="og:url" /> <meta property="og:url" content="{{ fullUrl }}" />
<meta property="og:image" content="{{ ogImage }}?class=w800" data-dynamic="og:image" /> <meta property="og:image" content="{{ ogImage }}?class=w800" />

View file

@ -50,7 +50,7 @@
<div class="main-wrapper"> <div class="main-wrapper">
<main> <main>
{% render "header.liquid", globals:globals, page:page, nav:nav %} {% render "header.liquid", globals:globals, page:page, nav:nav %}
<div class="default-wrapper" data-dynamic="page"> <div class="default-wrapper">
{{ content }} {{ content }}
</div> </div>
</main> </main>

View file

@ -6,8 +6,6 @@ eleventyExcludeFromCollections: true
Sitemap: https://coryd.dev/sitemap.xml Sitemap: https://coryd.dev/sitemap.xml
User-agent: * User-agent: *
Disallow: /dynamic.html
Disallow: /dynamic
Disallow: Disallow:
{% for robot in robots -%} {% for robot in robots -%}

View file

@ -1,3 +0,0 @@
---
permalink: /dynamic.html
---