From 11e3c058806d481a1d27c923dc4430225657fc61 Mon Sep 17 00:00:00 2001 From: LZylstra Date: Thu, 5 Dec 2024 12:22:05 -0800 Subject: [PATCH] Limit scope of margin rule (#174) Co-authored-by: Lindsey Zylstra --- components/ResourcePage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/ResourcePage.vue b/components/ResourcePage.vue index 000e8b7a..052a9618 100644 --- a/components/ResourcePage.vue +++ b/components/ResourcePage.vue @@ -379,10 +379,6 @@ const related = computed(() => { border-block-end: 1px solid var(--gray-200); margin-block-end: var(--space-10); - * + * { - margin-block-start: var(--space-10); - } - .featured { width: 100%; } @@ -500,4 +496,8 @@ const related = computed(() => { } } } + +.content main > * + * { + margin-block-start: var(--space-10); +}