Fix: Inline Phone Field Menu (#4383)
* #4343 fix: phone menu display on page * Add the possibility to send width as % --------- Co-authored-by: Thomas Trompette <thomast@twenty.com>
This commit is contained in:
@ -2,7 +2,7 @@ import styled from '@emotion/styled';
|
||||
|
||||
const StyledDropdownMenu = styled.div<{
|
||||
disableBlur?: boolean;
|
||||
width?: `${string}px` | 'auto' | number;
|
||||
width?: `${string}px` | `${number}%` | 'auto' | number;
|
||||
}>`
|
||||
backdrop-filter: ${({ disableBlur }) => (disableBlur ? 'none' : 'blur(8px)')};
|
||||
background: ${({ theme }) => theme.background.transparent.secondary};
|
||||
|
||||
Reference in New Issue
Block a user