chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-06-20 16:21:59 -07:00
parent aa54d96db8
commit eb34223928
No known key found for this signature in database
5 changed files with 12 additions and 9 deletions

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.18", "version": "19.5.19",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -15,7 +15,7 @@
</time> </time>
</div> </div>
<a href="{{ post.slug }}"> <a href="{{ post.slug }}">
<h3 class="flex-centered">{{ post.title }}</h3> <h3>{{ post.title }}</h3>
</a> </a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span> <span class="p-author h-card hidden">{{ meta.siteName }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div> <div class="p-summary hidden">{{ post.data.post_excerpt }}</div>

View file

@ -197,7 +197,7 @@ h6 { font-size: var(--font-size-sm) }
} }
.section-header-buttons { .section-header-buttons {
margin: var(--sizing-md) 0 var(--sizing-lg); margin: 0 0 var(--sizing-lg);
& > button { & > button {
margin-bottom: var(--sizing-sm) !important; margin-bottom: var(--sizing-sm) !important;
@ -398,6 +398,10 @@ article {
} }
} }
article h3 {
margin: 0;
}
footer { footer {
& .explainer { & .explainer {
margin: var(--sizing-3xl) 0 var(--sizing-lg); margin: var(--sizing-3xl) 0 var(--sizing-lg);
@ -590,7 +594,6 @@ li {
flex-wrap: wrap; flex-wrap: wrap;
} }
/* screens: md */
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
h1 { font-size: var(--font-size-3xl) } h1 { font-size: var(--font-size-3xl) }
h2 { font-size: var(--font-size-2xl) } h2 { font-size: var(--font-size-2xl) }
@ -607,8 +610,8 @@ li {
flex-direction: row; flex-direction: row;
} }
article h3 { .section-header-buttons {
margin: 0 0 var(--sizing-xs); margin: var(--sizing-md) 0 var(--sizing-lg);
} }
footer nav.social { footer nav.social {

View file

@ -17,7 +17,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
</time> </time>
</div> </div>
<a href="{{ post.slug }}"> <a href="{{ post.slug }}">
<h3 class="flex-centered">{{ post.title }}</h3> <h3>{{ post.title }}</h3>
</a> </a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span> <span class="p-author h-card hidden">{{ meta.siteName }}</span>
<div class="p-summary hidden">{{ post.description }}</div> <div class="p-summary hidden">{{ post.description }}</div>