Skip to content

Commit dd448c5

Browse files
committedNov 21, 2023
fix: wrong font in table mode
1 parent 1613f03 commit dd448c5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎src/lib/components/modes/tablemode/TableMode.scss

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
background: var(--jse-background-color);
99
min-width: 0;
1010
min-height: 0;
11+
font-family: var(--jse-font-family-mono);
12+
font-size: var(--jse-font-size-mono);
1113
color: var(--jse-text-color);
1214
line-height: var(--jse-line-height);
1315

‎src/lib/components/modes/treemode/JSONNode.scss

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
.jse-json-node {
44
position: relative;
5-
font-family: var(--jse-font-family-mono);
6-
font-size: var(--jse-font-size-mono);
75
color: var(--jse-text-color);
86

97
&.jse-root {

‎src/lib/components/modes/treemode/TreeMode.scss

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
background: var(--jse-background-color);
99
min-width: 0;
1010
min-height: 0;
11+
font-family: var(--jse-font-family-mono);
12+
font-size: var(--jse-font-size-mono);
1113
color: var(--jse-text-color);
1214
line-height: var(--jse-line-height);
1315

0 commit comments

Comments
 (0)
Please sign in to comment.