diff --git a/website/src/components/searchInput/index.js b/website/src/components/searchInput/index.js index 04d1ded7661..905c2b4131f 100644 --- a/website/src/components/searchInput/index.js +++ b/website/src/components/searchInput/index.js @@ -1,4 +1,5 @@ import React from 'react'; +import styles from './styles.module.css'; const SearchInput = ({ value, onChange, placeholder = "Search...", ...props }) => { return ( @@ -8,6 +9,7 @@ const SearchInput = ({ value, onChange, placeholder = "Search...", ...props }) = onChange={(e) => onChange && onChange(e.target.value)} placeholder={placeholder} {...props} + className={styles.inputContainer} /> ); }; diff --git a/website/src/components/selectDropdown/index.js b/website/src/components/selectDropdown/index.js index 7169d214160..f42e1b1b3f6 100644 --- a/website/src/components/selectDropdown/index.js +++ b/website/src/components/selectDropdown/index.js @@ -3,16 +3,23 @@ import Select from "react-select"; import styles from "./styles.module.css"; export const SelectDropdown = ({ options, value, onChange, isMulti, placeHolder }) => { + + return (