Fixed bugs in ViewBar filtering (#7608)
- Fixed CSS for SortOrFilter chips - Fixed bug when refreshing with an actor source filter set --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -39,9 +39,11 @@ const StyledChip = styled.div<{ variant: SortOrFitlerChipVariant }>`
|
||||
flex-shrink: 0;
|
||||
font-size: ${({ theme }) => theme.font.size.sm};
|
||||
font-weight: ${({ theme }) => theme.font.weight.medium};
|
||||
padding: ${({ theme }) => theme.spacing(1) + ' ' + theme.spacing(2)};
|
||||
padding: ${({ theme }) => theme.spacing(0.5) + ' ' + theme.spacing(2)};
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
|
||||
max-height: ${({ theme }) => theme.spacing(4.5)};
|
||||
`;
|
||||
|
||||
const StyledIcon = styled.div`
|
||||
|
||||
@ -50,7 +50,6 @@ const StyledChipcontainer = styled.div`
|
||||
overflow: scroll;
|
||||
gap: ${({ theme }) => theme.spacing(1)};
|
||||
padding-top: ${({ theme }) => theme.spacing(1)};
|
||||
padding-bottom: ${({ theme }) => theme.spacing(0.5)};
|
||||
z-index: 1;
|
||||
`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user