diff options
author | Indrajith K L | 2022-08-28 00:56:16 +0530 |
---|---|---|
committer | Indrajith K L | 2022-08-28 00:56:16 +0530 |
commit | 48b440784327247740ea2d1b60d43f17ce7801dc (patch) | |
tree | 6e6fd8c1eb7c02743242477e759f9d6f5c131032 /src/_includes/partials/header.njk | |
parent | 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c (diff) | |
download | indrajith-dev-48b440784327247740ea2d1b60d43f17ce7801dc.tar.gz indrajith-dev-48b440784327247740ea2d1b60d43f17ce7801dc.tar.bz2 indrajith-dev-48b440784327247740ea2d1b60d43f17ce7801dc.zip |
* Adds Responsive Header
Diffstat (limited to 'src/_includes/partials/header.njk')
-rw-r--r-- | src/_includes/partials/header.njk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/_includes/partials/header.njk b/src/_includes/partials/header.njk index a4e04a2..da51bba 100644 --- a/src/_includes/partials/header.njk +++ b/src/_includes/partials/header.njk @@ -1,8 +1,8 @@ -<header class="w-full bg-black text-yellow-500 flex justify-between items-center px-6 py-4"> +<header class="w-full bg-black text-yellow-500 flex flex-row md:flex-col justify-between items-center px-6 py-4"> <nav class="w-full"> - <ul class="flex gap-10 font-supply-regular w-full items-center text-xl"> + <ul class="flex flex-col md:flex-row gap-10 font-supply-regular w-full items-center text-lg md:text-xl"> <li> - <a href="/" class="text-3xl">{ indrajith.dev } </a> + <a href="/" class="text-lg md:text-3xl">{ indrajith.dev } </a> </li> <li class="hover:text-white"><a href="/about" id="about" class="links">About</a></li> <li class="hover:text-white"><a href="/posts" id="posts" class="links">Posts</a></li> |