@papernote/ui 1.8.1 → 1.8.2
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/dist/index.esm.js +46 -38
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +46 -38
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/PageLayout.tsx +3 -3
package/package.json
CHANGED
|
@@ -104,10 +104,10 @@ export function PageLayout({
|
|
|
104
104
|
|
|
105
105
|
return (
|
|
106
106
|
<Page padding="none" maxWidth={maxWidth} fixed={fixed}>
|
|
107
|
-
{/* Content before title (e.g., ControlBar) */}
|
|
108
|
-
{headerContent}
|
|
109
|
-
|
|
110
107
|
<div className={`${paddingClasses} ${maxWidthClasses[maxWidth]} mx-auto ${className}`}>
|
|
108
|
+
{/* Content before title (e.g., Breadcrumbs) */}
|
|
109
|
+
{headerContent && <div className="mb-4">{headerContent}</div>}
|
|
110
|
+
|
|
111
111
|
{/* Header */}
|
|
112
112
|
<div className="mb-8">
|
|
113
113
|
<Stack direction="horizontal" justify="between" align="start" gap="md">
|