How to change the Trending Tags hover color? #1505
-
Checklist
How did you create the site?Generated from DescriptionI edited all the thing that I wanted, Apart from the Trending Tags, when I hover on a trending tag is blue, how do I change that? Operations you have already triedI search the _sass folder to find something useful, I did not found anything Anything else?No response |
Beta Was this translation helpful? Give feedback.
Answered by
kungfux
Mar 1, 2024
Replies: 1 comment 1 reply
-
This style comes from the external place, so there is no definition for it in this repository. You can change it by adding overridden styles in .btn:hover {
background-color: #36bcf7 !important;
}
.btn.btn-outline-primary {
&:not(.disabled):hover {
border-color: #36bcf7 !important;
}
} Please don't track my IP :D |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SimoneFelici
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This style comes from the external place, so there is no definition for it in this repository.
You can change it by adding overridden styles in
assets\css\jekyll-theme-chirpy.scss
as following:Here is the result:
Please don't track my IP :D