1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-21 11:10:53 +00:00

fix(ui): fix incomplete border color on hover for tags (#2359)

This commit is contained in:
László Várady 2025-04-24 14:23:43 +02:00 committed by GitHub
parent 7708adbf30
commit c62644759c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,10 @@
}
%tag-hover {
@extend %link-color;
background: var(--tag-hover);
border-color: var(--tag-hover);
transition: background 0.35s ease-in-out;
}

View File

@ -143,9 +143,7 @@ header {
.post-tag {
&:hover {
@extend %link-hover;
@extend %tag-hover;
@extend %no-bottom-border;
}
}
}