doo-boilerplate 0.2.8 → 0.2.10
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
|
@@ -12,7 +12,7 @@ interface PageLayoutProps {
|
|
|
12
12
|
/** Standard page wrapper with title, optional description + actions slot */
|
|
13
13
|
export function PageLayout({ title, description, actions, children }: PageLayoutProps) {
|
|
14
14
|
return (
|
|
15
|
-
<div className='flex
|
|
15
|
+
<div className='flex flex-col'>
|
|
16
16
|
<div className='flex items-start justify-between px-6 pt-6'>
|
|
17
17
|
<div>
|
|
18
18
|
<h1 className='text-2xl font-bold tracking-tight'>{title}</h1>
|
|
@@ -25,7 +25,7 @@ export function PageLayout({ title, description, actions, children }: PageLayout
|
|
|
25
25
|
|
|
26
26
|
<Separator className='my-4' />
|
|
27
27
|
|
|
28
|
-
<div className='
|
|
28
|
+
<div className='px-6 pb-6'>{children}</div>
|
|
29
29
|
</div>
|
|
30
30
|
)
|
|
31
31
|
}
|