feat: add search and minify to project finder

This commit is contained in:
Jordan Knott
2021-01-05 16:46:49 -06:00
parent 783e1c84c3
commit a7c1ca328f
3 changed files with 243 additions and 163 deletions

View File

@ -87,6 +87,12 @@ export const HeaderTitle = styled.span`
export const Content = styled.div`
max-height: 632px;
overflow-y: auto;
overflow-x: hidden;
&::-webkit-scrollbar-track-piece {
background: ${props => props.theme.colors.bg.primary};
border-radius: 20px;
}
`;
export const LabelSearch = styled(ControlledInput)`