Skip to content

Commit

Permalink
fix: add hover color to heading links (lxndrblz#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Oct 21, 2024
1 parent 73631a8 commit 88e89b6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions assets/scss/partials/components/_post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@
color: t('primary');
}
}

a:hover {
font-size: $font-size-h1;

@include themed() {
color: t('info');
}
}
}

h2 {
Expand All @@ -117,6 +125,14 @@
color: t('primary');
}
}

a:hover {
font-size: $font-size-h2;

@include themed() {
color: t('info');
}
}
}

h3 {
Expand All @@ -134,6 +150,14 @@
color: t('primary');
}
}

a:hover {
font-size: $font-size-h3;

@include themed() {
color: t('info');
}
}
}

ul,
Expand Down

0 comments on commit 88e89b6

Please sign in to comment.