doo-boilerplate 0.2.8 → 0.2.9

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": "doo-boilerplate",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "CLI to scaffold Pila portal frontend projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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 h-full flex-col'>
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='flex-1 min-h-0 overflow-y-auto px-6 pb-6'>{children}</div>
28
+ <div className='px-6 pb-6'>{children}</div>
29
29
  </div>
30
30
  )
31
31
  }