Solve confict

This commit is contained in:
Letícia Camara 2018-10-04 15:58:08 -03:00
commit 99df4e48b9

View file

@ -30,11 +30,8 @@ const styles = theme => ({
}, },
textField: { textField: {
flexBasis: 280, flexBasis: 280,
borderColor: "#139657"
}, },
focused: {
color: '#139657',
backgroundColor: '#139657',
}
}); });
/** /**
@ -53,10 +50,9 @@ class EnhancedSearch extends Component {
<div className="search-books-bar"> <div className="search-books-bar">
<div className="search-books-input-wrapper" style={{ textAlign: 'left', marginLeft: 20}}> <div className="search-books-input-wrapper" style={{ textAlign: 'left', marginLeft: 20}}>
<TextField <TextField
style={{ textAlign: 'left', width: 350 }} style={{ textAlign: 'left', width: 350,borderColor: "#139657" }}
id="outlined-adornment-weight" id="outlined-adornment-weight"
className={classNames(classes.margin, classes.textField)} className={classNames(classes.margin, classes.textField)}
classes={{ focused: classes.focused }}
variant="outlined" variant="outlined"
label="Search" label="Search"
placeholder="Enter search term" placeholder="Enter search term"
@ -84,7 +80,7 @@ class EnhancedSearch extends Component {
</div> </div>
</div> </div>
); );
} };
} }
// Type checking the props of the component // Type checking the props of the component