1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-31 01:16:01 +02:00
unleash.unleash/frontend/src/component/user/UserProfile/UserProfile.styles.ts
Tymoteusz Czech 5ecc83f1b4 Refactored feature toggles table (#951)
* refactor: simplify table toolbar

* refactor: table links and padding

* fix: header icons colors

* fix: minor table style changes
2022-05-06 12:21:31 +02:00

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],
},
}));