Skip to content

Commit 3674056

Browse files
text align left all table headers (#46)
1 parent e3a7977 commit 3674056

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/renderer/render.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ function addStyles(document: HTMLDocument): HTMLStyleElement {
105105
.data-table form table thead th {
106106
background-color: var(--vscode-editor-background) !important;
107107
}
108+
109+
th {
110+
text-align: left !important;
111+
}
108112
`;
109113
return styles;
110114
}

src/renderer/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@
1111
.data-table form table thead th {
1212
background-color: var(--vscode-editor-background) !important;
1313
}
14+
15+
th {
16+
text-align: left !important;
17+
}

0 commit comments

Comments
 (0)