fixed carousel issue
This commit is contained in:
parent
4b573c1433
commit
848f84efa8
@ -23,7 +23,7 @@ const PageSelector: React.FC<PageSelectorProps> = ({
|
|||||||
return (
|
return (
|
||||||
<select
|
<select
|
||||||
className='rounded border border-gray-300 bg-white px-3 py-2 text-sm'
|
className='rounded border border-gray-300 bg-white px-3 py-2 text-sm'
|
||||||
value={activePageId}
|
value={activePageId ?? ''}
|
||||||
onChange={(event) => onPageChange(event.target.value)}
|
onChange={(event) => onPageChange(event.target.value)}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
>
|
>
|
||||||
|
|||||||
@ -580,8 +580,8 @@ export default function RuntimePresentation({
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Page elements - z-10 ensures they appear above backdrop layer */}
|
{/* Page elements - z-20 ensures they appear above carousel background (z-10) but below carousel controls (z-30) */}
|
||||||
<div className='absolute inset-0 z-10'>
|
<div className='absolute inset-0 z-20'>
|
||||||
{pageElements.map((element: CanvasElement) => (
|
{pageElements.map((element: CanvasElement) => (
|
||||||
<RuntimeElement
|
<RuntimeElement
|
||||||
key={element.id}
|
key={element.id}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user