Skip to content

Commit 80acecb

Browse files
chore: platform layout enhancements (#8386)
1 parent 5e0091e commit 80acecb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/web/core/components/base-layouts/list/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const BaseListLayout = observer(function BaseListLayout<T extends IBaseLa
3737
);
3838

3939
return (
40-
<div ref={containerRef} className={cn("relative size-full overflow-auto bg-surface-2", className)}>
40+
<div ref={containerRef} className={cn("relative size-full overflow-auto bg-surface-1", className)}>
4141
<div className="relative size-full flex flex-col">
4242
{groups.map((group) => {
4343
const itemIds = groupedItemIds[group.id] || [];

apps/web/core/components/issues/issue-layouts/roots/project-layout-root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const ProjectLayoutRoot = observer(function ProjectLayoutRoot() {
8080
}}
8181
/>
8282
)}
83-
<div className="relative h-full w-full overflow-auto bg-surface-2">
83+
<div className="relative h-full w-full overflow-auto bg-layer-2">
8484
{/* mutation loader */}
8585
{issues?.getIssueLoader() === "mutation" && (
8686
<div className="fixed w-[40px] h-[40px] z-50 right-[20px] top-[70px] flex justify-center items-center bg-layer-1 shadow-sm rounded-sm">

0 commit comments

Comments
 (0)