@betterstart/cli 0.1.4 → 0.1.5
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/cli.js +279 -178
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/ui/sidebar.tsx +5 -2
package/package.json
CHANGED
package/templates/ui/sidebar.tsx
CHANGED
|
@@ -151,7 +151,10 @@ function Sidebar({
|
|
|
151
151
|
return (
|
|
152
152
|
<div
|
|
153
153
|
data-slot="sidebar"
|
|
154
|
-
className={cn(
|
|
154
|
+
className={cn(
|
|
155
|
+
'bg-sidebar text-default flex h-full w-(--sidebar-width) flex-col',
|
|
156
|
+
className
|
|
157
|
+
)}
|
|
155
158
|
{...props}
|
|
156
159
|
>
|
|
157
160
|
{children}
|
|
@@ -223,7 +226,7 @@ function Sidebar({
|
|
|
223
226
|
<div
|
|
224
227
|
data-sidebar="sidebar"
|
|
225
228
|
data-slot="sidebar-inner"
|
|
226
|
-
className="bg-
|
|
229
|
+
className="bg-sidebar text-default group-data-[variant=floating]:border-sidebar-border flex h-full w-full flex-col group-data-[variant=floating]:rounded-lg corner-squircle group-data-[variant=floating]:border group-data-[variant=floating]:shadow-sm"
|
|
227
230
|
>
|
|
228
231
|
{children}
|
|
229
232
|
</div>
|