rspec/frontend/src/SearchPage.style.ts

23 lines
457 B
TypeScript
Raw Normal View History

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',
paddingBottom: theme.spacing(2),
},
searchResults: {
marginTop: theme.spacing(3),
},
resultsCount: {
marginBottom: theme.spacing(2),
}
}));