diff --git a/packages/core/components/Puck/components/Preview/styles.module.css b/packages/core/components/Puck/components/Preview/styles.module.css index 42ad09f5d..bb2bf44fb 100644 --- a/packages/core/components/Puck/components/Preview/styles.module.css +++ b/packages/core/components/Puck/components/Preview/styles.module.css @@ -4,6 +4,6 @@ .PuckPreview-frame { border: none; - height: 100%; + min-height: 100%; width: 100%; } diff --git a/packages/core/styles.css b/packages/core/styles.css index fa6897b23..9a9a16105 100644 --- a/packages/core/styles.css +++ b/packages/core/styles.css @@ -1,3 +1,7 @@ @import url("https://rsms.me/inter/inter.css"); @import "./styles/color.css"; @import "./styles/typography.css"; + +.Puck { + min-height: 100%; +}