Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/cosmos/main.tsx"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions src/components/WorkspaceCodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ export function WorkspaceCodeEditor({
style={{ height }}
>
{showSidebar && (
<div className="w-[200px] shrink-0 overflow-y-auto border-r border-slate-200 bg-slate-50 text-[13px] font-sans">
<div className="flex items-center justify-between px-2.5 py-2 text-[11px] font-semibold uppercase tracking-[0.05em] text-slate-500">
<div className="w-50 shrink-0 overflow-y-auto border-r border-slate-200 bg-slate-50 text-[13px] font-sans">
<div className="flex items-center justify-between px-2.5 py-2 text-[11px] font-semibold uppercase tracking-wider text-slate-500">
<span>Files</span>
{handleCreateFile && (
<button
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "examples", "cosmos", "vite.config.ts"]
"include": ["src", "examples", "vite.config.ts"]
}
Loading