@stevederico/skateboard-ui 0.5.3 → 0.5.4
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/Layout.jsx +2 -2
- package/package.json +1 -1
package/Layout.jsx
CHANGED
|
@@ -3,7 +3,7 @@ import TabBar from './TabBar.jsx'
|
|
|
3
3
|
import { SidebarProvider, SidebarTrigger } from "./shadcn/ui/sidebar"
|
|
4
4
|
import AppSidebar from "./AppSidebar"
|
|
5
5
|
import { useEffect } from 'react';
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
|
|
8
8
|
export default function Layout({ children }) {
|
|
9
9
|
|
|
@@ -22,7 +22,7 @@ export default function Layout({ children }) {
|
|
|
22
22
|
<div className="min-h-screen">
|
|
23
23
|
<div className="fixed inset-0 flex overflow-hidden pt-[env(safe-area-inset-top)] pb-[env(safe-area-inset-bottom)] pl-[env(safe-area-inset-left)] pr-[env(safe-area-inset-right)]">
|
|
24
24
|
<SidebarProvider>
|
|
25
|
-
|
|
25
|
+
<AppSidebar />
|
|
26
26
|
<main className="flex-1 relative overflow-y-auto scrollbar-hide">
|
|
27
27
|
<Outlet />
|
|
28
28
|
</main>
|