File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/jupyter-chat/src/components Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export function CodeToolbar(props: CodeToolbarProps): JSX.Element {
80
80
display : 'flex' ,
81
81
justifyContent : 'flex-end' ,
82
82
alignItems : 'center' ,
83
- padding : '6px 2px' ,
83
+ padding : '2px 2px' ,
84
84
marginBottom : '1em' ,
85
85
border : '1px solid var(--jp-cell-editor-border-color)' ,
86
86
borderTop : 'none'
Original file line number Diff line number Diff line change @@ -73,7 +73,11 @@ export function TooltippedIconButton(
73
73
{ ...props . iconButtonProps }
74
74
onClick = { props . onClick }
75
75
disabled = { props . disabled }
76
- sx = { { lineHeight : 0 , ...( props . disabled && { opacity : 0.5 } ) } }
76
+ sx = { {
77
+ marginLeft : '8px' ,
78
+ lineHeight : 0 ,
79
+ ...( props . disabled && { opacity : 0.5 } )
80
+ } }
77
81
aria-label = { props [ 'aria-label' ] }
78
82
>
79
83
{ props . children }
You can’t perform that action at this time.
0 commit comments