bug: style-trace-search is fixed

This commit is contained in:
Palash gupta 2022-04-06 11:33:56 +05:30
parent 8809105a8d
commit ead6885b29
No known key found for this signature in database
GPG Key ID: 8FD05AE6F9150AD6
3 changed files with 32 additions and 33 deletions

View File

@ -6,7 +6,7 @@ export const Container = styled(Card)`
min-height: 20vh;
width: 100%;
z-index: 2;
position: absolute;
position: absolute !important;
.ant-card-body {
padding-bottom: 0;

View File

@ -113,7 +113,6 @@ function Search({
};
return (
<Space direction="vertical" style={{ width: '100%' }}>
<Container ref={tagRef}>
<SearchComponent
onChange={(event): void => onChangeHandler(event.target.value)}
@ -147,7 +146,6 @@ function Search({
<Tags updateFilters={updateFilters} onChangeHandler={onChangeHandler} />
)}
</Container>
</Space>
);
}

View File

@ -6,6 +6,7 @@ const { Search } = Input;
export const Container = styled.div`
display: flex;
position: relative;
width: 100%;
`;
export const SearchComponent = styled(Search)`