From bd0cecb7442c7a012fe5a98e774b6b92489dae95 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 21 Sep 2022 23:00:45 +0630 Subject: [PATCH] Update footer text style to nowrap and update icon wrapper layout --- src/components/Footer.astro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index e0c6b46..9d16315 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -52,9 +52,12 @@ const { noMarginTop = false } = Astro.props; @apply scale-125; } .copyright-wrapper { - @apply my-2 flex flex-col sm:flex-row items-center; + @apply my-2 flex flex-col sm:flex-row items-center whitespace-nowrap; } .separator { @apply hidden sm:inline; } + .social-icons { + @apply flex flex-wrap justify-center gap-1; + }