Skip to content

Commit

Permalink
“for all relative paths in a document”
Browse files Browse the repository at this point in the history
  • Loading branch information
plt-amy committed Sep 12, 2023
1 parent ed4cecc commit 400cbae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion support/web/css/code.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url('static/ttf/julia-mono.ttf') format('truetype');
src: url('../static/ttf/julia-mono.ttf') format('truetype');
}

code, pre, .sourceCode {
Expand Down
4 changes: 2 additions & 2 deletions support/web/css/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -607,14 +607,14 @@ span.qed {
* it; An arrow with #000 stroke in light theme and #ABB2BF stroke in
* dark theme. */
span.enclosing.liesover {
background: url('static/lies-over-light.svg') no-repeat;
background: url('../static/lies-over-light.svg') no-repeat;
background-size: contain;
background-position: center center;
}

@media (prefers-color-scheme: dark) {
span.enclosing.liesover {
background: url('static/lies-over-dark.svg') no-repeat;
background: url('../static/lies-over-dark.svg') no-repeat;
background-size: contain;
background-position: center center;
}
Expand Down

0 comments on commit 400cbae

Please sign in to comment.