mirror of
https://github.com/lingble/twenty.git
synced 2025-11-03 14:17:58 +00:00
New view picker (#4610)
* Implement new view picker * Complete feature * Fixes according to review
This commit is contained in:
@@ -9,7 +9,10 @@ const StyledDropdownMenu = styled.div<{
|
||||
? 'none'
|
||||
: 'blur(12px) saturate(200%) contrast(50%) brightness(130%)'};
|
||||
|
||||
background: ${({ theme }) => theme.background.transparent.forBackdropFilter};
|
||||
background: ${({ theme, disableBlur }) =>
|
||||
disableBlur
|
||||
? theme.background.primary
|
||||
: 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