fixed gallery background blur issue

This commit is contained in:
Dmitri 2026-04-03 11:33:25 +04:00
parent c235909c54
commit 61e707f2ba
2 changed files with 2 additions and 2 deletions

View File

@ -430,7 +430,7 @@ export default function RuntimePresentation({
</Head> </Head>
<div <div
className='relative w-screen h-screen overflow-hidden bg-black' className='relative w-screen h-screen overflow-clip bg-black'
style={{ style={{
backgroundImage: backgroundImageUrl backgroundImage: backgroundImageUrl
? `url("${backgroundImageUrl}")` ? `url("${backgroundImageUrl}")`

View File

@ -1302,7 +1302,7 @@ const ConstructorPage = ({ mode = 'constructor' }: ConstructorPageProps) => {
<div <div
ref={canvasRef} ref={canvasRef}
tabIndex={-1} tabIndex={-1}
className='absolute inset-0 bg-black overflow-hidden' className='absolute inset-0 bg-black overflow-clip'
style={canvasBackgroundStyle} style={canvasBackgroundStyle}
> >
<CanvasBackground <CanvasBackground