Skip to content

Commit

Permalink
chore: rebuild docs (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus authored May 29, 2024
1 parent dfd4afa commit 3607770
Show file tree
Hide file tree
Showing 60 changed files with 2,753 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.42.1] - 2024-05-29

### Changes

- Re-built docs folder

## [0.42.0] - 2024-05-24

### Breaking changes
Expand Down
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +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.
22 changes: 22 additions & 0 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
:root {
--light-code-background: #F5F5F5;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }

body.light {
--code-background: var(--light-code-background);
}

body.dark {
--code-background: var(--dark-code-background);
}

pre, code { background: var(--code-background); }
Loading

0 comments on commit 3607770

Please sign in to comment.