@betterstart/cli 0.1.4 → 0.1.6

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": "@betterstart/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Scaffold a full-featured CMS into any Next.js 16 application",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -151,7 +151,10 @@ function Sidebar({
151
151
  return (
152
152
  <div
153
153
  data-slot="sidebar"
154
- className={cn('bg-white text-default flex h-full w-(--sidebar-width) flex-col', className)}
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-background 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"
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>