File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
components/UserDropdownContent Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ export const UserDropdownContent: FC<UserDropdownContentProps> = ({
107
107
const useStyles = makeStyles ( ( theme ) => ( {
108
108
info : {
109
109
padding : theme . spacing ( 2.5 ) ,
110
+ ...theme . typography . body2 ,
110
111
} ,
111
112
userName : {
112
113
fontWeight : 600 ,
Original file line number Diff line number Diff line change @@ -120,12 +120,13 @@ dark = createTheme(dark, {
120
120
color : "neutral" ,
121
121
} ,
122
122
styleOverrides : {
123
- root : {
123
+ root : ( { theme } ) => ( {
124
124
textTransform : "none" ,
125
125
letterSpacing : "normal" ,
126
126
fontWeight : 500 ,
127
127
height : BUTTON_MD_HEIGHT ,
128
- } ,
128
+ padding : theme . spacing ( 1 , 2 ) ,
129
+ } ) ,
129
130
sizeSmall : {
130
131
borderRadius : 6 ,
131
132
height : BUTTON_SM_HEIGHT ,
@@ -145,12 +146,12 @@ dark = createTheme(dark, {
145
146
} ,
146
147
iconSizeMedium : {
147
148
"& > .MuiSvgIcon-root" : {
148
- fontSize : 18 ,
149
+ fontSize : 16 ,
149
150
} ,
150
151
} ,
151
152
iconSizeSmall : {
152
153
"& > .MuiSvgIcon-root" : {
153
- fontSize : 16 ,
154
+ fontSize : 14 ,
154
155
} ,
155
156
} ,
156
157
} ,
You can’t perform that action at this time.
0 commit comments