From 88e89b67fe9e0439b722608e3485fc907932c09e Mon Sep 17 00:00:00 2001 From: Eric Park Date: Sun, 20 Oct 2024 20:12:48 -0400 Subject: [PATCH] fix: add hover color to heading links (#489) Fixes #489 --- assets/scss/partials/components/_post.scss | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/assets/scss/partials/components/_post.scss b/assets/scss/partials/components/_post.scss index 065926ad..8503c6ed 100644 --- a/assets/scss/partials/components/_post.scss +++ b/assets/scss/partials/components/_post.scss @@ -100,6 +100,14 @@ color: t('primary'); } } + + a:hover { + font-size: $font-size-h1; + + @include themed() { + color: t('info'); + } + } } h2 { @@ -117,6 +125,14 @@ color: t('primary'); } } + + a:hover { + font-size: $font-size-h2; + + @include themed() { + color: t('info'); + } + } } h3 { @@ -134,6 +150,14 @@ color: t('primary'); } } + + a:hover { + font-size: $font-size-h3; + + @include themed() { + color: t('info'); + } + } } ul,