Commit b4fd78e 1 parent d8022c1 commit b4fd78e Copy full SHA for b4fd78e
File tree 1 file changed +11
-5
lines changed
electron/renderer/components/grid
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -338,10 +338,6 @@ export const GridItem: React.FC<GridItemProps> = memo(
338
338
css = { {
339
339
height : 'inherit' ,
340
340
width : 'inherit' ,
341
- fontSize : style . fontSize ,
342
- fontFamily : style . fontFamily ,
343
- color : style . foregroundColor ,
344
- backgroundColor : style . backgroundColor ,
345
341
} }
346
342
>
347
343
< EuiSplitPanel . Inner grow = { false } color = "subdued" paddingSize = "none" >
@@ -402,7 +398,17 @@ export const GridItem: React.FC<GridItemProps> = memo(
402
398
justifyContent = "flexStart"
403
399
gutterSize = "none"
404
400
>
405
- < EuiFlexItem grow = { true } > { children } </ EuiFlexItem >
401
+ < EuiFlexItem
402
+ grow = { true }
403
+ css = { {
404
+ fontSize : style . fontSize ,
405
+ fontFamily : style . fontFamily ,
406
+ color : style . foregroundColor ,
407
+ backgroundColor : style . backgroundColor ,
408
+ } }
409
+ >
410
+ { children }
411
+ </ EuiFlexItem >
406
412
< EuiFlexItem grow = { false } >
407
413
< div
408
414
ref = { resizeHandleRef }
You can’t perform that action at this time.
0 commit comments