Skip to content

Commit 8ccb531

Browse files
authored
Merge pull request #3651 from ClickHouse/margin
widen margin
2 parents 646abdd + 0544978 commit 8ccb531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CodeViewer/CodeInterpreter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ function CodeInterpreter({
255255
<div className='flex items-center'>{hideTableResultButton()}</div>
256256
<div className='flex items-end min-h-[28px]'>
257257
{show_statistics && results?.response?.statistics && (
258-
<div className={`whitespace-pre-wrap text-[${windowWidth > 600 ? '12': '10'}px] mx-auto italic ${chart ? 'ml-[8px]' : ''}`}>
258+
<div className={`whitespace-pre-wrap text-[${windowWidth > 600 ? '12': '10'}px] mx-auto italic ${chart ? 'ml-[14px]' : ''}`}>
259259
{ windowWidth > 600 ? `Read ${formatReadableRows(results.response.statistics.rows_read)} rows and ${formatBytes(results.response.statistics.bytes_read)} in ${roundToDynamicPrecision(results.response.statistics.elapsed)} secs` :
260260
`Read ${formatReadableRows(results.response.statistics.rows_read)} rows in ${roundToDynamicPrecision(results.response.statistics.elapsed)} secs` }
261261
</div>

0 commit comments

Comments
 (0)