mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
header: {
|
|
padding: theme.spacing(0, 4),
|
|
},
|
|
bodyClass: {
|
|
padding: theme.spacing(2, 4, 4, 4),
|
|
overflowX: 'auto',
|
|
},
|
|
}));
|