diff options
author | Indrajith K L | 2022-09-03 04:38:12 +0530 |
---|---|---|
committer | Indrajith K L | 2022-09-03 04:38:12 +0530 |
commit | 9c7aa76cf8cf58137b18151aa70f64b4a71811b5 (patch) | |
tree | d875a25cb6860aee9193856f9212f607e664394b /src/_includes/partials/footer.njk | |
parent | e2a597a5efcd09f99b6e85620971c3e2fc50db12 (diff) | |
download | indrajith-dev-9c7aa76cf8cf58137b18151aa70f64b4a71811b5.tar.gz indrajith-dev-9c7aa76cf8cf58137b18151aa70f64b4a71811b5.tar.bz2 indrajith-dev-9c7aa76cf8cf58137b18151aa70f64b4a71811b5.zip |
Tailwind Build Process Changes
* Uses npm-run-all to manage build process
* Removed Concurrently
Style Fixes
Diffstat (limited to 'src/_includes/partials/footer.njk')
-rw-r--r-- | src/_includes/partials/footer.njk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/_includes/partials/footer.njk b/src/_includes/partials/footer.njk index 3b88e2a..f3bffae 100644 --- a/src/_includes/partials/footer.njk +++ b/src/_includes/partials/footer.njk @@ -1,13 +1,13 @@ <footer class="items-center px-6 py-2 mt-auto bg-black text-white"> - <ul class="w-full block md:hidden gap-4 font-supply-regular ml-auto text-center mt-5 md:mt-0"> + <ul class="w-full flex md:hidden gap-5 font-supply-regular ml-auto justify-center mt-5 md:mt-0"> <li class="hover:text-white inline-block"><a title="Twitter" href="https://twitter.com/indrajithKLIS" class="links">{% feather "twitter" %}</a></li> <li class="hover:text-white inline-block"><a title="Github" href="https://github.com/cooljith91112" class="links">{% feather "github" %}</a></li> <li class="hover:text-white inline-block"><a title="LinkedIn" href="https://www.linkedin.com/in/indrajithklis/" class="links">{% feather "linkedin" %}</a></li> <li class="hover:text-white inline-block"><a title="RSS" href="/feed.xml" class="links">{% feather "rss" %}</a></li> </ul> <ul class="flex w-full gap-10 font-supply-regular justify-center mt-5 md:mt-auto"> - <li class="mt-1"> - <p>© 2022 Indrajith K L </p> - </li> + <li class="mt-1"> + <p>© 2022 Indrajith K L </p> + </li> </ul> </footer>
\ No newline at end of file |