18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
root: {
|
|
display: 'flex',
|
|
flexGrow: 1,
|
|
maxWidth: '63.75rem',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
marginLeft: theme.spacing(2),
|
|
borderBottom: `1px solid ${theme.palette.customColors.black(0.1)}`,
|
|
},
|
|
Head: {
|
|
margin: theme.spacing(4.5, 1.5, 2.5, 1.5),
|
|
},
|
|
}));
|
|
export default useStyles;
|