From 4c4b1bc637765721f3bd9baacff4877511d2e66a Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Mon, 12 Sep 2022 18:21:48 +0630 Subject: [PATCH] Remove unnecessary vertical margin of nav li on larger devices --- src/components/Header.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 73b3f3f..967e432 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -89,7 +89,7 @@ const { activeNav } = Astro.props; @apply flex flex-col sm:flex-row sm:space-x-4; } nav li { - @apply py-2 text-center my-2; + @apply py-2 text-center my-2 sm:my-0; } nav a { @apply py-2 px-3 font-medium hover:text-skin-accent;