mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
* chore: update changelog * feat: user profile * feat: onOutsideClick hook * feat: tune user profile * fix: refactor to button * feat: mobile view * fix: update tests * feat: add link to docs
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import { makeStyles } from '@material-ui/styles';
|
|
|
|
export const useStyles = makeStyles({
|
|
userProfileMenu: {
|
|
display: 'flex',
|
|
},
|
|
profileContainer: {
|
|
position: 'relative',
|
|
},
|
|
button: {
|
|
color: '#fff',
|
|
padding: '0.2rem 1rem',
|
|
},
|
|
});
|