From 7d51eb5a638245f09f972bf6824c6ee8d9541e2e Mon Sep 17 00:00:00 2001 From: DrR0X-glitch <59130955+DrR0X-glitch@users.noreply.github.com> Date: Fri, 17 Jan 2025 18:55:15 +1100 Subject: [PATCH 1/2] Increase spacing of resource items --- source/assets/stylesheets/extra.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/assets/stylesheets/extra.css b/source/assets/stylesheets/extra.css index 723d4584..de7d55d3 100644 --- a/source/assets/stylesheets/extra.css +++ b/source/assets/stylesheets/extra.css @@ -125,6 +125,10 @@ a.generated-grid-link p:last-of-type { max-width: 320px; } +.resource-item { + margin-bottom: .5em; +} + input, form, div, @@ -172,4 +176,4 @@ ol:not(.no-styling)>li:before { background-color: var(--md-default-fg-color--light); color: var(--md-default-bg-color); border-radius: 50%; -} \ No newline at end of file +} From 4bc1f986b6fcc5c27e202f797385e48fc4decbb1 Mon Sep 17 00:00:00 2001 From: DrR0X-glitch <59130955+DrR0X-glitch@users.noreply.github.com> Date: Fri, 17 Jan 2025 18:56:20 +1100 Subject: [PATCH 2/2] Add resource-item class to resource items --- source/overrides/partials/content.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/overrides/partials/content.html b/source/overrides/partials/content.html index 7b95b189..5d184c14 100644 --- a/source/overrides/partials/content.html +++ b/source/overrides/partials/content.html @@ -31,7 +31,7 @@ <h3>Help and support</h3> <h4>Resources</h4> {% for link in config.extra.resources %} - <div> + <div class="resource-item"> <span class="twemoji"> {% include ".icons/" ~ link.icon ~ ".svg" %} </span> @@ -64,4 +64,4 @@ <h4>Still need help?</h4> </div> </div> </div> -{% block footer %}{% endblock %} \ No newline at end of file +{% block footer %}{% endblock %}