Skip to content

Commit e919f69

Browse files
add 5px padding around row count display in data summary card (#82)
1 parent f1b428a commit e919f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/dataSummaryView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export function summaryCard(data) {
173173
<div>${d3.format(',.0f')(columnCount)}</div>
174174
${headerRowPlot}
175175
<span style="display: inline-block">${columnsPlot}</span>
176-
<span style="display: inline-block; vertical-align: top;">${d3.format(',.0f')(rowCount)}<br/></span>
176+
<span style="display: inline-block; vertical-align: top; padding: 5px;">${d3.format(',.0f')(rowCount)}<br/></span>
177177
<span style=${arrowDownStyles}></span>
178178
</div>`;
179179

0 commit comments

Comments
 (0)