From 7d8759895304f7c64a5a2c4b6a83b12871fb43fd Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Thu, 1 Jun 2023 09:12:23 +0200 Subject: [PATCH] Fix design filter dropdown --- front/src/components/table/table-header/DropdownButton.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/src/components/table/table-header/DropdownButton.tsx b/front/src/components/table/table-header/DropdownButton.tsx index 078642aaa..fb44bb050 100644 --- a/front/src/components/table/table-header/DropdownButton.tsx +++ b/front/src/components/table/table-header/DropdownButton.tsx @@ -65,6 +65,7 @@ const StyledDropdown = styled.ul` &:last-of-type { border-bottom-left-radius: var(--outer-border-radius); border-bottom-right-radius: var(--outer-border-radius); + border-bottom: 0; } } `; @@ -125,6 +126,8 @@ const StyledSearchField = styled.li` user-select: none; color: ${(props) => props.theme.text60}; font-weight: ${(props) => props.theme.fontWeightBold}; + border-bottom: var(--wraper-border) solid + ${(props) => props.theme.primaryBorder}; overflow: hidden; input {