diff options
author | Indrajith K L | 2022-08-29 04:14:35 +0530 |
---|---|---|
committer | Indrajith K L | 2022-08-29 04:14:35 +0530 |
commit | 27c7e5f47b670c51aab581589a6b4c90c12a2c0b (patch) | |
tree | bdc576d663e36846c54a4420423abe99ff8c8a8d /src/_includes/partials/header.njk | |
parent | e5fcb404ddb40ae14b8d844dec6d75c5436a6a39 (diff) | |
download | indrajith-dev-27c7e5f47b670c51aab581589a6b4c90c12a2c0b.tar.gz indrajith-dev-27c7e5f47b670c51aab581589a6b4c90c12a2c0b.tar.bz2 indrajith-dev-27c7e5f47b670c51aab581589a6b4c90c12a2c0b.zip |
* Style Changes
* Content Changes
Diffstat (limited to 'src/_includes/partials/header.njk')
-rw-r--r-- | src/_includes/partials/header.njk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/_includes/partials/header.njk b/src/_includes/partials/header.njk index da51bba..ab1d424 100644 --- a/src/_includes/partials/header.njk +++ b/src/_includes/partials/header.njk @@ -9,9 +9,9 @@ <li class="hover:text-white"><a href="/cv" id="cv" class="links">CV</a></li> </ul> <ul class="hidden md:flex flex-row gap-10 font-supply-regular right-0 -my-8 mx-6 absolute"> - <li><a title="Twitter" href="https://twitter.com/indrajithKLIS" class="links">{% feather "twitter" %}</a></li> - <li><a title="Github" href="https://github.com/cooljith91112" class="links">{% feather "github" %}</a></li> - <li><a title="LinkedIn" href="https://www.linkedin.com/in/indrajithklis/" class="links">{% feather "linkedin" %}</a></li> + <li class="hover:text-white"><a title="Twitter" href="https://twitter.com/indrajithKLIS" class="links">{% feather "twitter" %}</a></li> + <li class="hover:text-white"><a title="Github" href="https://github.com/cooljith91112" class="links">{% feather "github" %}</a></li> + <li class="hover:text-white"><a title="LinkedIn" href="https://www.linkedin.com/in/indrajithklis/" class="links">{% feather "linkedin" %}</a></li> </ul> </nav> </header> @@ -22,7 +22,7 @@ const navs = ["about","posts","cv"]; const currentNav = navs.find(nav=>currentLocation.includes(nav)); if (currentNav) { - document.getElementById(currentNav).parentElement.classList.add("text-black-600"); + document.getElementById(currentNav).parentElement.classList.add("text-white"); } })(); </script>
\ No newline at end of file |