From abd344cad066f15e38215176823417e08546f277 Mon Sep 17 00:00:00 2001 From: Vishva Date: Wed, 29 Jul 2026 17:17:54 +0530 Subject: [PATCH] Fix overflow styling on modal left gradient cards --- src/App.jsx | 6 ++++-- src/components/ContactSection.jsx | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 677046d..3d07ec7 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2457,7 +2457,8 @@ export default function App({ previewMode = false }) { justifyContent: 'flex-start', background: 'radial-gradient(circle at top left, rgba(3, 135, 218, 0.25) 0%, rgba(2, 7, 16, 0.4) 100%)', borderRight: isMobile ? 'none' : '1px solid rgba(255, 255, 255, 0.08)', - borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none' + borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none', + overflow: 'hidden' }} > {/* Blur asset overlay on left section */} @@ -2931,7 +2932,8 @@ export default function App({ previewMode = false }) { justifyContent: 'flex-start', background: 'radial-gradient(circle at top left, rgba(3, 135, 218, 0.25) 0%, rgba(2, 7, 16, 0.4) 100%)', borderRight: isMobile ? 'none' : '1px solid rgba(255, 255, 255, 0.08)', - borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none' + borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none', + overflow: 'hidden' }} > {/* Blur asset overlay on left section */} diff --git a/src/components/ContactSection.jsx b/src/components/ContactSection.jsx index 4ec7856..171d3c0 100644 --- a/src/components/ContactSection.jsx +++ b/src/components/ContactSection.jsx @@ -290,7 +290,8 @@ export default function ContactSection({ isMobile, onOpenStrategy }) { justifyContent: 'flex-start', background: 'radial-gradient(circle at top left, rgba(3, 135, 218, 0.25) 0%, rgba(2, 7, 16, 0.4) 100%)', borderRight: isMobile ? 'none' : '1px solid rgba(255, 255, 255, 0.08)', - borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none' + borderBottom: isMobile ? '1px solid rgba(255, 255, 255, 0.08)' : 'none', + overflow: 'hidden' }} > {/* Blur asset overlay on left section */}