@jimmy_harika/websitekit 0.5.6 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jimmy_harika/websitekit",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "Snow Labs website builder engine. Block-agnostic, curated-section. One shared builder across every Snow Labs app — engine + design-system-agnostic blocks + per-industry catalogs (author, photographer, …). Each app plugs in a catalog + theme + persistence adapter.",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
@@ -359,9 +359,7 @@ function PageBuilderInner({
359
359
  ))}
360
360
  {dock === "library" && <BlockLibraryBody catalog={catalog} />}
361
361
  {dock === "host" && (
362
- <div className="min-h-0 flex-1 overflow-auto p-3 sm:p-4">
363
- {hostDock?.body}
364
- </div>
362
+ <div className="p-3 sm:p-4">{hostDock?.body}</div>
365
363
  )}
366
364
  </EditorDock>
367
365
  )}