Skip to content

Commit

Permalink
remove double-quotes around font-family value,
Browse files Browse the repository at this point in the history
so the default of var(--joplin-font-family) is correctly evaluated
  • Loading branch information
brttbndr committed Mar 18, 2021
1 parent 0cbee85 commit 100953d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ joplin.plugins.register({
}

await panels.setHtml(view, `
<div class="outline-content" style='
font-family: "${fontFamily}"
<div class="outline-content" style="
font-family: ${fontFamily}
'>
<a class="header" href="javascript:;"">OUTLINE</a>
<div class="container" style="
Expand Down

0 comments on commit 100953d

Please sign in to comment.