From 0f91f46861f22dd4db1184557cc7de5807aa8e41 Mon Sep 17 00:00:00 2001 From: Jitendra Rewar Date: Tue, 4 Aug 2026 14:23:40 +0530 Subject: [PATCH 1/2] fix(ui): resolve blue box overlap on CodeExampleSection Fixes: #628 Signed-off-by: Jitendra Rewar --- src/components/content/CodeExampleSection/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/content/CodeExampleSection/index.tsx b/src/components/content/CodeExampleSection/index.tsx index 9012323161..b878e39a10 100644 --- a/src/components/content/CodeExampleSection/index.tsx +++ b/src/components/content/CodeExampleSection/index.tsx @@ -52,18 +52,18 @@ const DesktopCodeBlock = (props: DeskProps) => { function CodeExampleSection() { return (
- +
); From c04369be043dd8472b79aaebc15be95c584ab67a Mon Sep 17 00:00:00 2001 From: Jitendra Rewar Date: Wed, 5 Aug 2026 13:24:12 +0530 Subject: [PATCH 2/2] fix: restore overlap and resolve scrollbar interactivity via positive z-indices --- src/components/content/CodeExampleSection/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/content/CodeExampleSection/index.tsx b/src/components/content/CodeExampleSection/index.tsx index b878e39a10..d27f85e8bd 100644 --- a/src/components/content/CodeExampleSection/index.tsx +++ b/src/components/content/CodeExampleSection/index.tsx @@ -52,18 +52,18 @@ const DesktopCodeBlock = (props: DeskProps) => { function CodeExampleSection() { return (
- +
);