Skip to content

Commit

Permalink
Merge pull request #2389 from shanberg/fix-right-sidebar-item-bg
Browse files Browse the repository at this point in the history
fix: right sidebar items have proper bg
  • Loading branch information
shanberg authored Sep 26, 2022
2 parents 68ff509 + 6bea740 commit a32c87b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/js/components/Layout/RightSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ export const SidebarItem = ({ title, type, isOpen, onToggle, onRemove, onNavigat
const className = { "page": "node-page", "block": "block-page", "graph": "graph-page" }[type];
return (
<VStack
layerStyle="card"
bg="background.upper"
borderRadius="md"
overflow="hidden"
align="stretch"
position="relative"
Expand All @@ -112,7 +113,8 @@ export const SidebarItem = ({ title, type, isOpen, onToggle, onRemove, onNavigat
"--page-left-gutter-width": "1em",
"--page-right-gutter-width": "3em",
}}
mt={2}>
mt={2}
>
<Flex
alignItems="center"
justifyContent="center"
Expand Down

0 comments on commit a32c87b

Please sign in to comment.