mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
06b0a29ea8
* refactor: column icon position * project overview horizontal scroll * updated table headers styles * fix: feature overview switch title * refactor: cleanup of sortable header styles * fix: z-index issue in test * fix: html semantics after review
30 lines
737 B
TypeScript
30 lines
737 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
container: {
|
|
borderRadius: theme.shape.borderRadiusLarge,
|
|
boxShadow: 'none',
|
|
},
|
|
headerContainer: {
|
|
padding: theme.spacing(2, 4),
|
|
borderBottomStyle: 'solid',
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: theme.palette.divider,
|
|
[theme.breakpoints.down('md')]: {
|
|
padding: '1.5rem 1rem',
|
|
},
|
|
},
|
|
bodyContainer: {
|
|
padding: theme.spacing(4),
|
|
[theme.breakpoints.down('md')]: {
|
|
padding: theme.spacing(2),
|
|
},
|
|
},
|
|
paddingDisabled: {
|
|
padding: '0',
|
|
},
|
|
borderDisabled: {
|
|
border: 'none',
|
|
},
|
|
}));
|