32 lines
621 B
TypeScript
32 lines
621 B
TypeScript
|
|
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',
|
|
paddingBottom: theme.spacing(1),
|
|
},
|
|
searchResults: {
|
|
marginTop: theme.spacing(3),
|
|
},
|
|
topRow: {
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between'
|
|
},
|
|
resultsCount: {
|
|
marginBottom: theme.spacing(2),
|
|
},
|
|
fullWidth: {
|
|
maxWidth: '120%',
|
|
flexBasis: '120%'
|
|
}
|
|
}));
|