Skip to content

Commit 5781bd8

Browse files
committed
adding dev-v0.13.0 tag to this commit to ensure building
1 parent 3eea447 commit 5781bd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2858
-1
lines changed

bundle/website.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/assets/highlight.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root {
2+
--light-code-background: #F5F5F5;
3+
--dark-code-background: #1E1E1E;
4+
}
5+
6+
@media (prefers-color-scheme: light) { :root {
7+
--code-background: var(--light-code-background);
8+
} }
9+
10+
@media (prefers-color-scheme: dark) { :root {
11+
--code-background: var(--dark-code-background);
12+
} }
13+
14+
body.light {
15+
--code-background: var(--light-code-background);
16+
}
17+
18+
body.dark {
19+
--code-background: var(--dark-code-background);
20+
}
21+
22+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)