From 53a9067d08dbaad4e037a3dda3de0fd61f6874af Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Fri, 3 Oct 2025 05:33:25 +1000 Subject: [PATCH] Add !important to social links hover colors for better specificity --- website/style.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/website/style.css b/website/style.css index c3e5a85..6b77712 100644 --- a/website/style.css +++ b/website/style.css @@ -102,24 +102,29 @@ h1 { text-shadow: 0 0 3px white; } +.social-links a:hover.fa-github, .social-links a:hover .fab.fa-github { - color: var(--github); + color: var(--github) !important; } +.social-links a:hover.fa-youtube, .social-links a:hover .fab.fa-youtube { - color: var(--youtube); + color: var(--youtube) !important; } +.social-links a:hover.fa-steam, .social-links a:hover .fab.fa-steam { - color: var(--steam); + color: var(--steam) !important; } +.social-links a:hover.fa-discord, .social-links a:hover .fab.fa-discord { - color: var(--discord); + color: var(--discord) !important; } +.social-links a:hover.fa-bluesky, .social-links a:hover .fa-brands.fa-bluesky { - color: var(--bluesky); + color: var(--bluesky) !important; } #posts {