1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-08 00:27:58 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
iSpeakNerd
b48ea68bf7
chore: update linkedin sharing url (#2307) 2025-04-24 20:25:46 +08:00
László Várady
c62644759c
fix(ui): fix incomplete border color on hover for tags (#2359) 2025-04-24 20:23:43 +08:00
3 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,7 @@ platforms:
# #
# - type: Linkedin # - type: Linkedin
# icon: "fab fa-linkedin" # icon: "fab fa-linkedin"
# link: "https://www.linkedin.com/sharing/share-offsite/?url=URL" # link: "https://www.linkedin.com/feed/?shareActive=true&shareUrl=URL"
# #
# - type: Weibo # - type: Weibo
# icon: "fab fa-weibo" # icon: "fab fa-weibo"

View File

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

View File

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