From 9349f2cff52ca00b93ef8cf1cacca35b780411f6 Mon Sep 17 00:00:00 2001 From: rishu229 Date: Sun, 11 Jan 2026 19:47:38 +0530 Subject: [PATCH] fix: resolve hero section horizontal overflow on medium screens (640px-1024px) - Added overflow-hidden to Banner component container - Wrapped Pattern components in constrained container with gradient mask - Applied CSS gradient mask for smooth fade effect on patterns - Ensures no horizontal scroll between 640px-1024px viewports Fixes #522 --- src/components/Banner.jsx | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/components/Banner.jsx b/src/components/Banner.jsx index 44a482da..b0787e59 100644 --- a/src/components/Banner.jsx +++ b/src/components/Banner.jsx @@ -5,11 +5,22 @@ import { Pattern } from '@/components/Pattern'; export function Banner() { return (
-
+
- - -
+ + {/* Add gradient mask that fades to right */} +
+ + +
+ +

Launch into AOSSIE's open-source world through GSoC!

@@ -28,4 +39,4 @@ export function Banner() {
); -} +} \ No newline at end of file