Fix overflow styling on modal left gradient cards

This commit is contained in:
Vishva
2026-07-29 17:17:54 +05:30
parent 9fb329dcd6
commit abd344cad0
2 changed files with 6 additions and 3 deletions
+4 -2
View File
@@ -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 */}