From 19385e00c0332ad2f189d41c8082a387164d8efa Mon Sep 17 00:00:00 2001 From: Sammy Teillet Date: Mon, 24 Apr 2023 15:39:17 +0200 Subject: [PATCH] feature: fix background color of dropdown item to be fully transparent --- front/src/components/table/table-header/DropdownButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/table/table-header/DropdownButton.tsx b/front/src/components/table/table-header/DropdownButton.tsx index 900e473bf..df7c1f952 100644 --- a/front/src/components/table/table-header/DropdownButton.tsx +++ b/front/src/components/table/table-header/DropdownButton.tsx @@ -71,12 +71,12 @@ const StyledDropdownItem = styled.li` padding: ${(props) => props.theme.spacing(2)} calc(${(props) => props.theme.spacing(2)} - 2px); margin: 2px; - background: ${(props) => props.theme.primaryBackground}; + background: rgba(0, 0, 0, 0); cursor: pointer; color: ${(props) => props.theme.text60}; &:hover { - filter: brightness(0.95); + background: rgba(0, 0, 0, 0.04); } `;