1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/menu/Footer/Footer.styles.ts

24 lines
504 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()(theme => ({
footer: {
padding: '2rem 4rem',
width: '100%',
2021-08-26 21:01:19 +02:00
flexGrow: 1,
zIndex: 100,
backgroundColor: theme.palette.footerBackground,
},
list: {
padding: 0,
margin: 0,
},
listItem: {
padding: 0,
margin: 0,
'& a': {
textDecoration: 'none',
color: theme.palette.text.primary,
},
},
}));