mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
22 lines
461 B
JavaScript
22 lines
461 B
JavaScript
|
import { makeStyles } from '@material-ui/styles';
|
||
|
|
||
|
export const useStyles = makeStyles(theme => ({
|
||
|
footer: {
|
||
|
background: theme.palette.footer.background,
|
||
|
padding: '2rem 4rem',
|
||
|
width: '100%',
|
||
|
},
|
||
|
list: {
|
||
|
padding: 0,
|
||
|
margin: 0,
|
||
|
},
|
||
|
listItem: {
|
||
|
padding: 0,
|
||
|
margin: 0,
|
||
|
'& a': {
|
||
|
textDecoration: 'none',
|
||
|
color: theme.palette.footer.main,
|
||
|
},
|
||
|
},
|
||
|
}));
|