Skip to content

Commit

Permalink
fix: remove top border on select content
Browse files Browse the repository at this point in the history
  • Loading branch information
ebgranger committed Jul 25, 2023
1 parent 89e1f8d commit 53267f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/select/src/SelectContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 53267f9

Please sign in to comment.