This commit is contained in:
Jan Prochazka
2020-05-10 22:17:59 +02:00
parent 22ce9b382c
commit 8f2b357095
2 changed files with 3 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ const SearchBoxWrapper = styled.div`
const Header = styled.div`
font-weight: bold;
white-space: nowrap;
`;
const LinkContainer = styled.div`

View File

@@ -4,7 +4,8 @@ import keycodes from '../utility/keycodes';
const StyledInput = styled.input`
flex: 1;
min-width: 90px;
min-width: 10px;
width: 10px;
`;
export default function SearchInput({ placeholder, filter, setFilter, inputRef = undefined }) {