Skip to content

Commit c8caf64

Browse files
committed
Fix: index heading style defaults are ignored
1 parent 52a2984 commit c8caf64

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vellum-doc.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ export class VellumDocument extends LitElement {
2323
}
2424
2525
#index h1 {
26-
font: var(--index-level-1-font, bold 1.3em inherit);
26+
font: var(--index-level-1-font, bold 1.3em 'inherit');
2727
line-height: 1em;
2828
text-align: center;
2929
}
3030
3131
#index h2 {
32-
font: var(--index-level-2-font, bold 1.15em inherit);
32+
font: var(--index-level-2-font, bold 1.15em 'inherit');
3333
}
3434
3535
#index h3 {
36-
font: var(--index-level-3-font, 1em inherit);
36+
font: var(--index-level-3-font, 1em 'inherit');
3737
padding-left: 1.4em;
3838
}
3939
4040
#index h4 {
4141
padding-left: 3em;
42-
font: var(--index-level-4-font, 0.9em inherit);
42+
font: var(--index-level-4-font, 0.9em 'inherit');
4343
}
4444
4545
#index a {

0 commit comments

Comments
 (0)