fix(search): input base styles

Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2023-05-18 13:00:37 +02:00
committed by Carlos Esteban Lopez
parent 2f660eb573
commit ba261f9dcd
7 changed files with 104 additions and 151 deletions
@@ -23,7 +23,7 @@ import {
import { useNavigateToQuery } from '../util';
const useStyles = makeStyles({
root: {
searchBarRoot: {
fontSize: '1.5em',
},
searchBarOutline: {
@@ -62,12 +62,12 @@ export const HomePageSearchBar = (props: HomePageSearchBarProps) => {
return (
<SearchBarBase
classes={{ root: classes.root }}
value={query}
onSubmit={handleSubmit}
onChange={handleChange}
InputProps={{
classes: {
root: classes.searchBarRoot,
notchedOutline: classes.searchBarOutline,
...props.InputProps?.classes,
},