From aff9ad1578ae3b30adee5fbb5bbd4f1d72eea3e7 Mon Sep 17 00:00:00 2001 From: ausvat <andrewusvat7@gmail.com> Date: Tue, 12 Sep 2023 15:30:15 -0700 Subject: [PATCH] Updated Select Query box --- src/components/presentational/SearchAndFilterInput.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/presentational/SearchAndFilterInput.jsx b/src/components/presentational/SearchAndFilterInput.jsx index ee2b1e429..40d6f13ce 100644 --- a/src/components/presentational/SearchAndFilterInput.jsx +++ b/src/components/presentational/SearchAndFilterInput.jsx @@ -368,8 +368,8 @@ export default function SearchAndFilterInput(props) { {pyGeoAPIFlag && ( <div className="panelSection panelBar"> <span> - <FormControl sx={{ minWidth: 150 }}> - <InputLabel id="selectQueryLabel" size="small"> + <FormControl sx={{ minWidth: 150 , minHeight: 40}}> + <InputLabel id="selectQueryLabel" size="small" style={{paddingTop: '0.2rem'}}> Select Query </InputLabel> <Select @@ -379,6 +379,7 @@ export default function SearchAndFilterInput(props) { value={selectedOptions} onChange={handleOptionChange} renderValue={(selected) => selected.join(', ')} + style={{height: 43}} > {queryableTitles.map((title) => ( <MenuItem key={title} value={title}> -- GitLab