From 53267f97e8643f3c0a6b57f21781587135bde649 Mon Sep 17 00:00:00 2001 From: Edward Granger Date: Tue, 25 Jul 2023 12:09:20 -0400 Subject: [PATCH] fix: remove top border on select content --- ui/select/src/SelectContent.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/select/src/SelectContent.tsx b/ui/select/src/SelectContent.tsx index a4760197c..6a932868a 100644 --- a/ui/select/src/SelectContent.tsx +++ b/ui/select/src/SelectContent.tsx @@ -10,7 +10,10 @@ import type * as WPDS from "@washingtonpost/wpds-theme"; const StyledContent = styled(SelectPrimitive.Content, { backgroundColor: theme.colors.secondary, - border: `1px solid ${theme.colors.gray300}`, + borderTop: `none`, + borderRight: `1px solid ${theme.colors.gray300}`, + borderBottom: `1px solid ${theme.colors.gray300}`, + borderLeft: `1px solid ${theme.colors.gray300}`, color: theme.colors.primary, fontFamily: theme.fonts.meta, fontSize: theme.fontSizes["100"],