1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00
unleash.unleash/frontend/src/component/project/Project/ProjectFeatureToggles/ProjectFeatureToggles.styles.ts
Tymoteusz Czech 755c22f3b9
feat: features list pagination (#5496)
New paginated table - tested on /features-new behind a flag
2023-12-01 14:53:05 +00:00

14 lines
338 B
TypeScript

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()((theme) => ({
container: {
boxShadow: 'none',
minHeight: '100%',
position: 'relative',
[theme.breakpoints.down('md')]: {
paddingBottom: theme.spacing(8),
width: 'inherit',
},
},
}));