File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 4
4
SidebarContent ,
5
5
SidebarFooter ,
6
6
SidebarGroup ,
7
- SidebarGroupLabel ,
8
7
SidebarHeader ,
9
8
} from '@/components/ui/sidebar'
10
9
@@ -35,7 +34,6 @@ export function AppSidebar() {
35
34
< TypescriptSwitch />
36
35
</ SidebarGroup >
37
36
< SidebarGroup >
38
- < SidebarGroupLabel > Add-ons</ SidebarGroupLabel >
39
37
< SelectedAddOns />
40
38
</ SidebarGroup >
41
39
< SidebarGroup >
Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ const onProjectChange = new Effect({
92
92
starter : projectStarter . state ?. url || undefined ,
93
93
}
94
94
options . chosenAddOns = selectedAddOns . state . map ( ( addOn ) => addOn . id )
95
- console . log ( options )
96
95
const outputReq = await fetch ( '/api/run-create-app' , {
97
96
method : 'POST' ,
98
97
headers : {
Original file line number Diff line number Diff line change @@ -162,3 +162,16 @@ code {
162
162
@apply bg-background text-foreground;
163
163
}
164
164
}
165
+
166
+ [data-sidebar = 'group' ] {
167
+ background-color : hsl (240 5.9% 6% ) !important ;
168
+ @apply mb-2 rounded-lg border-1 border-gray-800;
169
+ }
170
+
171
+ [data-sidebar = 'content' ] {
172
+ @apply p-2 pt-5;
173
+ }
174
+
175
+ [data-sidebar = 'header' ] {
176
+ @apply backdrop-blur-md shadow-gray-700 shadow-lg z-50;
177
+ }
You can’t perform that action at this time.
0 commit comments