Skip to content

Commit 643aca5

Browse files
authored
fix(LaTex/render/Typst): Add stroke color to typst-doc styles (#2237)
* fix: Add stroke color to typst-doc styles * chore: better style by override * fix: remove * selector in CSS * chore: remove empty line
1 parent ec26ebc commit 643aca5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

quartz/styles/base.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,17 @@ ul,
4141
.katex,
4242
.math,
4343
.typst-doc,
44-
.typst-doc * {
44+
g[class~="typst-text"] {
4545
color: var(--darkgray);
4646
fill: var(--darkgray);
4747
overflow-wrap: break-word;
4848
text-wrap: pretty;
4949
}
5050

51+
path[class~="typst-shape"] {
52+
stroke: var(--darkgray);
53+
}
54+
5155
.math {
5256
&.math-display {
5357
text-align: center;

0 commit comments

Comments
 (0)