Skip to content

Commit d6f69fe

Browse files
committed
chore: CSS updates
1 parent 25e18c1 commit d6f69fe

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

packages/cta-ui/src/components/cta-sidebar.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
SidebarContent,
55
SidebarFooter,
66
SidebarGroup,
7-
SidebarGroupLabel,
87
SidebarHeader,
98
} from '@/components/ui/sidebar'
109

@@ -35,7 +34,6 @@ export function AppSidebar() {
3534
<TypescriptSwitch />
3635
</SidebarGroup>
3736
<SidebarGroup>
38-
<SidebarGroupLabel>Add-ons</SidebarGroupLabel>
3937
<SelectedAddOns />
4038
</SidebarGroup>
4139
<SidebarGroup>

packages/cta-ui/src/store/project.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ const onProjectChange = new Effect({
9292
starter: projectStarter.state?.url || undefined,
9393
}
9494
options.chosenAddOns = selectedAddOns.state.map((addOn) => addOn.id)
95-
console.log(options)
9695
const outputReq = await fetch('/api/run-create-app', {
9796
method: 'POST',
9897
headers: {

packages/cta-ui/src/styles.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,16 @@ code {
162162
@apply bg-background text-foreground;
163163
}
164164
}
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+
}

0 commit comments

Comments
 (0)