fix(native-filter): Default value multi-select height in native filters (#14816)
* Fix height * Fix height sidebar * Move style
This commit is contained in:
parent
2b4e0ec9e0
commit
ad4ce83327
|
|
@ -47,6 +47,9 @@ import { useCascadingFilters } from './state';
|
|||
const FilterItem = styled.div`
|
||||
min-height: ${({ theme }) => theme.gridUnit * 11}px;
|
||||
padding-bottom: ${({ theme }) => theme.gridUnit * 3}px;
|
||||
& > div > div {
|
||||
height: auto;
|
||||
}
|
||||
`;
|
||||
|
||||
const FilterValue: React.FC<FilterProps> = ({
|
||||
|
|
|
|||
|
|
@ -97,6 +97,9 @@ export const StyledRowFormItem = styled(Form.Item)`
|
|||
margin-bottom: 0px;
|
||||
min-width: 50%;
|
||||
|
||||
.ant-form-item-control-input-content > div > div {
|
||||
height: auto;
|
||||
}
|
||||
& .ant-form-item-control-input {
|
||||
min-height: ${({ theme }) => theme.gridUnit * 10}px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue