diff --git a/src/components/Header.astro b/src/components/Header.astro index 1d9ceff..a2c3f98 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -58,13 +58,13 @@ const { activeNav } = Astro.props;
- @@ -119,16 +119,16 @@ const { activeNav } = Astro.props; @apply fill-skin-base w-6 h-6 scale-125; } nav { - @apply w-full py-2 sm:py-0 flex flex-col items-center sm:justify-end sm:flex-row sm:space-x-4 bg-skin-fill; + @apply w-full py-2 sm:py-0 sm:pr-4 flex flex-col items-center sm:justify-end sm:flex-row sm:space-x-4 bg-skin-fill; } nav ul { @apply flex flex-col sm:flex-row sm:space-x-4; } nav li { - @apply py-2 text-center my-2 sm:my-0; + @apply py-3 sm:py-2 text-center my-1 sm:my-0; } nav a { - @apply py-2 px-3 font-medium hover:text-skin-accent; + @apply px-6 py-3 sm:py-2 sm:px-3 font-medium hover:text-skin-accent; } nav a.active { @apply underline underline-offset-4 decoration-wavy decoration-2; @@ -145,8 +145,12 @@ const { activeNav } = Astro.props; nav button svg { @apply w-6 h-6 fill-skin-base hover:fill-skin-accent; } + #theme-btn { + /* @apply w-12 h-12 sm:w-9 sm:h-9 flex justify-center items-center sm:inline-block; */ + @apply p-3 sm:p-1; + } #theme-btn svg { - @apply hover:rotate-12; + @apply hover:rotate-12 scale-125 sm:scale-100; } .icon-container {