fix: spacing
This commit is contained in:
parent
2b7967c4f9
commit
4067148658
5 changed files with 12 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "11.4.15",
|
"version": "11.4.16",
|
||||||
"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": {
|
||||||
|
|
|
@ -414,6 +414,16 @@ li {
|
||||||
margin-bottom: 0;
|
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 {
|
.link-list-header {
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
@import url('./pages/about.css') layer(page);
|
@import url('./pages/about.css') layer(page);
|
||||||
@import url('./pages/blogroll.css') layer(page);
|
@import url('./pages/blogroll.css') layer(page);
|
||||||
@import url('./pages/contact.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/now.css') layer(page);
|
||||||
@import url('./pages/post.css') layer(page);
|
@import url('./pages/post.css') layer(page);
|
||||||
@import url('./pages/webrings.css') layer(page);
|
@import url('./pages/webrings.css') layer(page);
|
||||||
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -5,7 +5,7 @@ pagination:
|
||||||
data: links
|
data: links
|
||||||
size: 30
|
size: 30
|
||||||
---
|
---
|
||||||
<ul class="link-list">
|
<ul class="link-list reduced-spacing">
|
||||||
{% for link in pagination.items %}
|
{% for link in pagination.items %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ link.url }}">{{ link.title }}</a>
|
<a href="{{ link.url }}">{{ link.title }}</a>
|
||||||
|
|
Reference in a new issue