Skip to content

Commit

Permalink
fix: change report menu background color
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Dec 11, 2024
1 parent c3a95de commit 68037b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/features/ReportActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const ReportActions = forwardRef<HTMLDivElement, { report: ReportWithUser
});

return (
<Stack ref={ref} gap="0">
<Stack ref={ref} gap="0" bgColor="#ECECFE">
{canEdit ? (
<>
<ReportAction
Expand Down
2 changes: 2 additions & 0 deletions packages/frontend/src/features/ReportList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,8 @@ const ReportListItem = ({
height: "32px",
minHeight: "32px",
maxHeight: "32px",
bgColor: "#ECECFE",
boxShadow: "none",
})}
onClick={() => setIsOpen((prev) => !prev)}
iconId="ri-more-fill"
Expand Down

0 comments on commit 68037b0

Please sign in to comment.