File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
ui/packages/shared/pages/Logs Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ const useStyles = makeStyles(
32
32
'& > span' : {
33
33
display : 'flex' ,
34
34
flexDirection : 'row' ,
35
- gap : '5px' ,
36
35
alignItems : 'center' ,
37
36
border : '1px solid #898E9A' ,
38
37
padding : '3px 8px' ,
@@ -46,9 +45,13 @@ const useStyles = makeStyles(
46
45
background : 'none' ,
47
46
outline : 'none' ,
48
47
border : 0 ,
49
- width : '18px' ,
50
- height : '18px' ,
48
+ width : '100%' ,
49
+ height : '100%' ,
50
+ display : 'flex' ,
51
+ alignItems : 'center' ,
51
52
cursor : 'pointer' ,
53
+ paddingBottom : 0 ,
54
+ paddingRight : 0 ,
52
55
} ,
53
56
} ,
54
57
// we need important since id has higher priority than class
@@ -82,6 +85,12 @@ const useStyles = makeStyles(
82
85
transform : 'rotate(45deg) scale(0.75)' ,
83
86
} ,
84
87
} ,
88
+ buttonClassName : {
89
+ '& svg' : {
90
+ width : '14px' ,
91
+ height : '14px' ,
92
+ } ,
93
+ } ,
85
94
activeError : {
86
95
border : '1px solid #F44336 !important' ,
87
96
color : '#F44336 !important' ,
@@ -193,7 +202,11 @@ export const Logs = ({ api, instanceId }: { api: Api; instanceId: string }) => {
193
202
}
194
203
>
195
204
< span > { type . toLowerCase ( ) } </ span >
196
- < button aria-label = "close" type = "button" >
205
+ < button
206
+ aria-label = "close"
207
+ type = "button"
208
+ className = { classes . buttonClassName }
209
+ >
197
210
< PlusIcon />
198
211
</ button >
199
212
</ span >
You can’t perform that action at this time.
0 commit comments