mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-31 01:16:01 +02:00
* refactor: simplify table toolbar * refactor: table links and padding * fix: header icons colors * fix: minor table style changes
21 lines
430 B
TypeScript
21 lines
430 B
TypeScript
import { makeStyles } from 'tss-react/mui';
|
|
|
|
export const useStyles = makeStyles()(theme => ({
|
|
userProfileMenu: {
|
|
display: 'flex',
|
|
},
|
|
profileContainer: {
|
|
position: 'relative',
|
|
},
|
|
button: {
|
|
color: 'inherit',
|
|
padding: '0.2rem 1rem',
|
|
'&:hover': {
|
|
backgroundColor: 'transparent',
|
|
},
|
|
},
|
|
icon: {
|
|
color: theme.palette.grey[700],
|
|
},
|
|
}));
|