Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
addressed comments
  • Loading branch information
emir-karabeg committed Mar 15, 2026
commit 7a47b91851b855c6fe485447ab3f875d5c737b12
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function LandingPreviewSidebar({

return (
<div
className='flex h-full w-[248px] flex-shrink-0 flex-col pt-[12px] tracking-[0.02em]'
className='flex h-full w-[248px] flex-shrink-0 flex-col pt-[12px]'
style={{ backgroundColor: C.SURFACE_1 }}
>
{/* Workspace Header */}
Expand Down
12 changes: 12 additions & 0 deletions apps/sim/app/_styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@
--terminal-height: 206px; /* TERMINAL_HEIGHT.DEFAULT */
}

.workspace-root {
letter-spacing: 0.02em;
}

.workspace-root code,
.workspace-root kbd,
.workspace-root samp,
.workspace-root pre,
.workspace-root .font-mono {
letter-spacing: normal;
}

.sidebar-container {
width: var(--sidebar-width);
transition: width 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/app/workspace/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function WorkspaceRootLayout({ children }: WorkspaceRootLayoutPro

return (
<SocketProvider user={user}>
<div className='tracking-[0.02em]'>{children}</div>
<div className='workspace-root'>{children}</div>
</SocketProvider>
)
}
Loading