2020-07-09 14:26:53 +02:00
|
|
|
|
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
|
|
|
|
export default makeStyles((theme) => ({
|
|
|
|
root: {
|
|
|
|
// marginTop: theme.spacing(1),
|
|
|
|
},
|
|
|
|
searchHitBox: {
|
|
|
|
marginBottom: theme.spacing(1),
|
|
|
|
},
|
|
|
|
searchBar: {
|
|
|
|
// backgroundColor: 'white'
|
|
|
|
borderBottom: '1px solid lightgrey',
|
2022-01-27 14:45:19 +01:00
|
|
|
paddingBottom: theme.spacing(1),
|
2020-07-09 14:26:53 +02:00
|
|
|
},
|
|
|
|
searchResults: {
|
|
|
|
marginTop: theme.spacing(3),
|
|
|
|
},
|
2021-05-05 14:50:29 +02:00
|
|
|
topRow: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
2020-07-09 14:26:53 +02:00
|
|
|
resultsCount: {
|
|
|
|
marginBottom: theme.spacing(2),
|
2022-01-27 14:45:19 +01:00
|
|
|
},
|
|
|
|
fullWidth: {
|
|
|
|
maxWidth: '120%',
|
|
|
|
flexBasis: '120%'
|
2020-07-09 14:26:53 +02:00
|
|
|
}
|
|
|
|
}));
|