Skip to content

Commit

Permalink
Fix: Make DropdownMenuSeparator background transparent based on theme
Browse files Browse the repository at this point in the history
  • Loading branch information
muraliSingh7 committed Dec 12, 2024
1 parent 6d54f5b commit 157b54c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import styled from '@emotion/styled';

const StyledDropdownMenuSeparator = styled.div`
background-color: ${({ theme }) => theme.border.color.light};
background-color: ${({ theme }) =>
theme.name === 'dark'
? theme.background.transparent.light
: theme.border.color.light};
min-height: 1px;
width: 100%;
`;

Expand Down

0 comments on commit 157b54c

Please sign in to comment.