Resolved dropdown style issue (#3620)
* #3617 #3615 resolved dropdown style issue * resolved lint error * resolved gap issue * resolved lint error
This commit is contained in:
@ -4,9 +4,8 @@ const StyledDropdownMenu = styled.div<{
|
||||
disableBlur?: boolean;
|
||||
width?: `${string}px` | 'auto' | number;
|
||||
}>`
|
||||
backdrop-filter: ${({ disableBlur }) =>
|
||||
disableBlur ? 'none' : 'blur(20px)'};
|
||||
background: ${({ theme }) => theme.background.secondary};
|
||||
backdrop-filter: ${({ disableBlur }) => (disableBlur ? 'none' : 'blur(8px)')};
|
||||
background: ${({ theme }) => theme.background.transparent.secondary};
|
||||
border: 1px solid ${({ theme }) => theme.border.color.medium};
|
||||
border-radius: ${({ theme }) => theme.border.radius.md};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user