Skip to content

Commit aedb9ce

Browse files
committed
[agent] use a different color variable for the background color in Sidebar
1 parent c019639 commit aedb9ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/frontend/src/components/ui/sidebar/sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const Sidebar = React.forwardRef<
151151
return (
152152
<div
153153
className={cn(
154-
"flex h-full flex-col bg-background text-foreground",
154+
"flex h-full flex-col bg-secondary text-foreground",
155155
"w-[var(--sidebar-width)]",
156156
className,
157157
)}
@@ -168,7 +168,7 @@ const Sidebar = React.forwardRef<
168168
<div className="md:hidden">
169169
{openMobile && (
170170
<div
171-
className="fixed inset-0 z-50 bg-background p-0 text-foreground"
171+
className="fixed inset-0 z-50 bg-secondary p-0 text-foreground"
172172
style={{ width: SIDEBAR_WIDTH_MOBILE }}
173173
>
174174
{children}
@@ -216,7 +216,7 @@ const Sidebar = React.forwardRef<
216216
>
217217
<div
218218
data-sidebar="sidebar"
219-
className="flex h-full w-full flex-col bg-background group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-border group-data-[variant=floating]:shadow"
219+
className="flex h-full w-full flex-col bg-secondary group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-border group-data-[variant=floating]:shadow"
220220
>
221221
{children}
222222
</div>

0 commit comments

Comments
 (0)