File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -117,11 +117,12 @@ export default function VersionButton() {
117
117
>
118
118
< Button
119
119
onClick = { ( ) => setOpen ( true ) }
120
- style = { { textTransform : 'none' , paddingBottom : 0 , paddingTop : 0 } }
120
+ size = "small"
121
+ sx = { theme => ( { textTransform : 'none' , color : theme . palette . sidebar . color } ) }
121
122
>
122
123
< Box display = { isSidebarOpen ? 'flex' : 'block' } alignItems = "center" >
123
124
< Box >
124
- < VersionIcon color = { theme . palette . text . secondary } icon = "mdi:kubernetes" />
125
+ < VersionIcon color = { theme . palette . sidebar . color } icon = "mdi:kubernetes" />
125
126
</ Box >
126
127
< Box > { clusterVersion . gitVersion } </ Box >
127
128
</ Box >
@@ -132,7 +133,7 @@ export default function VersionButton() {
132
133
< NameValueTable rows = { getVersionRows ( ) } />
133
134
</ DialogContent >
134
135
< DialogActions >
135
- < Button onClick = { handleClose } color = "primary" >
136
+ < Button onClick = { handleClose } color = "primary" variant = "contained" >
136
137
{ t ( 'translation|Close' ) }
137
138
</ Button >
138
139
</ DialogActions >
You can’t perform that action at this time.
0 commit comments