Skip to content

Commit 7a47b91

Browse files
committed
addressed comments
1 parent 01c3745 commit 7a47b91

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

apps/sim/app/(home)/components/landing-preview/components/landing-preview-sidebar/landing-preview-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function LandingPreviewSidebar({
8282

8383
return (
8484
<div
85-
className='flex h-full w-[248px] flex-shrink-0 flex-col pt-[12px] tracking-[0.02em]'
85+
className='flex h-full w-[248px] flex-shrink-0 flex-col pt-[12px]'
8686
style={{ backgroundColor: C.SURFACE_1 }}
8787
>
8888
{/* Workspace Header */}

apps/sim/app/_styles/globals.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@
1717
--terminal-height: 206px; /* TERMINAL_HEIGHT.DEFAULT */
1818
}
1919

20+
.workspace-root {
21+
letter-spacing: 0.02em;
22+
}
23+
24+
.workspace-root code,
25+
.workspace-root kbd,
26+
.workspace-root samp,
27+
.workspace-root pre,
28+
.workspace-root .font-mono {
29+
letter-spacing: normal;
30+
}
31+
2032
.sidebar-container {
2133
width: var(--sidebar-width);
2234
transition: width 200ms cubic-bezier(0.25, 0.1, 0.25, 1);

apps/sim/app/workspace/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function WorkspaceRootLayout({ children }: WorkspaceRootLayoutPro
2020

2121
return (
2222
<SocketProvider user={user}>
23-
<div className='tracking-[0.02em]'>{children}</div>
23+
<div className='workspace-root'>{children}</div>
2424
</SocketProvider>
2525
)
2626
}

0 commit comments

Comments
 (0)