1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/component/user/UserProfile/UserProfile.styles.js
Fredrik Strand Oseberg 05334337c2 Feat/user profile (#274)
* 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
2021-04-23 13:49:42 +02:00

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