We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b266e5 + 124fdb4 commit fd7c10bCopy full SHA for fd7c10b
1 file changed
src/components/puck/Container.tsx
@@ -14,7 +14,9 @@ export const Container: React.FC<ContainerProps> = ({
14
gap = "",
15
outline = "",
16
}) => (
17
- Content && <Content minEmptyHeight="256px" className={`flex flex-col w-full ${padding} ${gap} ${outline}`} />
+ <div className={`w-full ${padding} ${outline}`}>
18
+ {Content && <Content minEmptyHeight="256px" className={`flex flex-col w-full ${gap}`} />}
19
+ </div>
20
)
21
22
export const ContainerConfig: ComponentConfig<ContainerProps> = {
0 commit comments