Skip to content

Commit cf1bb4f

Browse files
authored
Fix font family quoting (#46)
1 parent 79edf29 commit cf1bb4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ class CsvEditorProvider implements vscode.CustomTextEditorProvider {
540540
<meta name="viewport" content="width=device-width, initial-scale=1.0">
541541
<title>CSV</title>
542542
<style nonce="${nonce}">
543-
body { font-family: "${fontFamily}"; margin: 0; padding: 0; user-select: none; }
543+
body { font-family: ${fontFamily}; margin: 0; padding: 0; user-select: none; }
544544
.table-container { overflow-x: auto; max-height: 100vh; }
545545
table { border-collapse: collapse; width: max-content; }
546546
th, td { padding: ${cellPadding}px 8px; border: 1px solid ${isDark ? '#555' : '#ccc'}; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

0 commit comments

Comments
 (0)