From 0544e7b47464ff7192c443770c542e02e2daf557 Mon Sep 17 00:00:00 2001 From: mathuraditya724 Date: Fri, 30 Jan 2026 02:13:52 +0530 Subject: [PATCH 1/3] fix: corrected the delay in the footer --- docs/astro.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index fe2308fa7..96d03afcb 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -113,7 +113,11 @@ export default defineConfig({ window.overscrollTimeout = setTimeout(function() { pullDistance = 0; updateOverscroll(0); - }, 300); + }, 5000); + } else if (e.deltaY < 0) { + clearTimeout(window.overscrollTimeout); + pullDistance = 0; + updateOverscroll(0); } } From b2f516d6b0a80e5ad54bc98da71ca5aac2934f22 Mon Sep 17 00:00:00 2001 From: mathuraditya724 Date: Fri, 30 Jan 2026 02:14:44 +0530 Subject: [PATCH 2/3] fix: made accessibility better in the dropdown --- docs/src/components/InstallSelector.astro | 180 ++++++++++++++++++---- 1 file changed, 149 insertions(+), 31 deletions(-) diff --git a/docs/src/components/InstallSelector.astro b/docs/src/components/InstallSelector.astro index 26c975414..4a0b6d1d3 100644 --- a/docs/src/components/InstallSelector.astro +++ b/docs/src/components/InstallSelector.astro @@ -251,6 +251,16 @@ const defaultOption = highlightedOptions[defaultIndex]; background: rgba(255, 255, 255, 0.1); font-weight: 500; } + + .dropdown-option:focus { + outline: none; + background: rgba(255, 255, 255, 0.12); + } + + .dropdown-option:focus-visible { + outline: 2px solid rgba(255, 255, 255, 0.4); + outline-offset: -2px; + }