fix: spacing

This commit is contained in:
Cory Dransfeldt 2024-04-17 09:32:19 -07:00
parent 2b7967c4f9
commit 4067148658
No known key found for this signature in database
5 changed files with 12 additions and 12 deletions

View file

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

View file

@ -414,6 +414,16 @@ li {
margin-bottom: 0;
}
}
&.reduced-spacing {
margin-top: 0;
margin-bottom: var(--sizing-3xl);
padding-left: 0;
& li:first-of-type {
margin-top: 0;
}
}
}
.link-list-header {

View file

@ -19,7 +19,6 @@
@import url('./pages/about.css') layer(page);
@import url('./pages/blogroll.css') layer(page);
@import url('./pages/contact.css') layer(page);
@import url('./pages/links.css') layer(page);
@import url('./pages/now.css') layer(page);
@import url('./pages/post.css') layer(page);
@import url('./pages/webrings.css') layer(page);

View file

@ -1,9 +0,0 @@
.default-wrapper > .link-list {
margin-top: 0;
margin-bottom: var(--sizing-3xl);
padding-left: 0;
& li:first-of-type {
margin-top: 0;
}
}

View file

@ -5,7 +5,7 @@ pagination:
data: links
size: 30
---
<ul class="link-list">
<ul class="link-list reduced-spacing">
{% for link in pagination.items %}
<li>
<a href="{{ link.url }}">{{ link.title }}</a>