From 09b7fd6063c947222acf1ec670012786550041e5 Mon Sep 17 00:00:00 2001 From: Unmesh100 Date: Mon, 23 Feb 2026 22:48:08 +0530 Subject: [PATCH 1/2] fix: Adjust footer navigation layout for improved responsiveness and prevent horizontal overflow by removing excessive right spacing. --- src/pages/index.astro | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 8f58f8b..270fdb8 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -855,6 +855,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond; min-height: 100vh; display: flex; flex-direction: column; + overflow-x: hidden; } /* Hero */ @@ -1864,13 +1865,15 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond; display: flex; justify-content: center; align-items: center; - gap: 12px; + gap: 8px; margin-bottom: 16px; font-size: 0.95rem; + flex-wrap: wrap; } .footer-separator { color: var(--text-muted); + margin: 0 4px; } .footer a { @@ -2113,6 +2116,19 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond; font-size: 0.85rem; } + .footer-nav { + gap: 6px; + font-size: 0.85rem; + } + + .footer a { + display: inline-block; + } + + .footer-separator { + margin: 0 2px; + } + /* Quick Start mobile layout */ .code-header { flex-wrap: wrap; @@ -2174,6 +2190,21 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond; } } + @media (min-width: 481px) and (max-width: 768px) { + .footer-nav { + gap: 10px; + font-size: 0.9rem; + } + + .footer a { + display: inline-block; + } + + .footer-separator { + margin: 0 6px; + } + } + /* Accessibility Utilities */ /* Hides content visually but keeps it available for screen readers */ From caaa7f78415cab44810d12feab91ed26d3fa6a45 Mon Sep 17 00:00:00 2001 From: Unmesh100 Date: Mon, 2 Mar 2026 12:25:48 +0530 Subject: [PATCH 2/2] fix: Vercel logo was not visible in light theme. --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index b99232a..7aac853 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1824,7 +1824,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond; transition: opacity 0.25s ease; } - :global(html[data-theme='light']) .sponsor-logo { + :global(html[data-theme='light']) .sponsor-logo:not(.sponsor-logo-light-only) { filter: invert(1); opacity: 0.8; }