From c5531e5ea385f67db9dbc5b6cb120b9f64b20e0b Mon Sep 17 00:00:00 2001 From: Klink <85062+dogmar@users.noreply.github.com> Date: Mon, 30 Jan 2023 08:18:44 -0800 Subject: [PATCH] feat: Add border to listbox/select/combobox footers (#396) --- src/components/ListBoxItem.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ListBoxItem.tsx b/src/components/ListBoxItem.tsx index 2e0b3569..ae014506 100644 --- a/src/components/ListBoxItem.tsx +++ b/src/components/ListBoxItem.tsx @@ -162,6 +162,7 @@ const ListBoxFooterInner = styled.div<{ focused?: boolean }>(({ theme, focused = position: 'relative', width: '100%', padding: `${theme.spacing.small}px ${theme.spacing.medium}px`, + borderTop: theme.borders['fill-two'], '&:hover': { backgroundColor: theme.colors['fill-two-hover'], },