fix: alignment

This commit is contained in:
Cory Dransfeldt 2024-08-23 19:03:38 -07:00
parent 6430805fbf
commit 0c5bbdd640
No known key found for this signature in database
6 changed files with 11 additions and 11 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.2", "version": "22.6.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.2", "version": "22.6.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.2", "version": "22.6.3",
"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",
"scripts": { "scripts": {

View file

@ -118,7 +118,7 @@
& svg { & svg {
stroke: var(--music); stroke: var(--music);
margin-right: var(--sizing-xs); margin-bottom: -6px;
} }
} }
} }

View file

@ -22,7 +22,7 @@
& svg { & svg {
stroke: var(--concerts); stroke: var(--concerts);
margin-right: var(--sizing-xs); margin-bottom: -6px;
} }
} }
@ -31,7 +31,7 @@
& svg { & svg {
stroke: var(--books); stroke: var(--books);
margin-right: var(--sizing-xs); margin-bottom: -6px;
} }
} }

View file

@ -57,12 +57,12 @@ schema: book
{%- if book.artists -%} {%- if book.artists -%}
{%- capture sectionTitle -%} {%- capture sectionTitle -%}
{% if book.artists.size > 1 %} {% if book.artists.size > 1 %}
I listen to artists in this book! I listen to artists featured in this book!
{% else %} {% else %}
I listen to the artist in this book! I listen to the artist featured in this book!
{%- endif -%} {%- endif -%}
{%- endcapture -%} {%- endcapture -%}
<p id="artists" class="music flex-centered"> <p id="artists" class="music">
{% tablericon "headphones" "Music" %} {% tablericon "headphones" "Music" %}
{{ sectionTitle }} {{ sectionTitle }}
</p> </p>

View file

@ -64,7 +64,7 @@ schema: artist
{%- endif -%} {%- endif -%}
{%- if artist.concerts -%} {%- if artist.concerts -%}
<hr /> <hr />
<p id="concerts" class="concerts flex-centered"> <p id="concerts" class="concerts">
{% tablericon "device-speaker" "concert" %} {% tablericon "device-speaker" "concert" %}
I've seen this artist live! I've seen this artist live!
</p> </p>
@ -92,7 +92,7 @@ schema: artist
{%- endif -%} {%- endif -%}
{%- if artist.books -%} {%- if artist.books -%}
<hr /> <hr />
<p id="books" class="books flex-centered"> <p id="books" class="books">
{% tablericon "books" "books" %} {% tablericon "books" "books" %}
I've read about this artist! I've read about this artist!
</p> </p>