mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
6818a82cd1
* feat: add dark mode theme * fix: feature metrics * fix: add color * styling * fix: add switch * fix: form sidebar * fix: remove console log * fix: add properties * fix: strategy container * feat: feature flag * fix: tests * fix: build * fix: logo * fix: icon * fix: update snapshots * fix: CES operator * fix: typography * fix: input styling * fix: remove initial load * fix: change flag name * fix: refactor to custom hook * fix: remove unused import * fix: dialog headers * fix: use uiConfig flags instead of flags
24 lines
504 B
TypeScript
24 lines
504 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
footer: {
|
|
padding: '2rem 4rem',
|
|
width: '100%',
|
|
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,
|
|
},
|
|
},
|
|
}));
|