We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6019629 commit 86b3c81Copy full SHA for 86b3c81
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: ci
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - main
7
+permissions:
8
+ contents: write
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ if: github.event.repository.fork == false
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-python@v4
16
+ with:
17
+ python-version: 3.x
18
+ - uses: actions/cache@v2
19
20
+ key: ${{ github.ref }}
21
+ path: .cache
22
+ - run: apt-get install pngquant
23
+ - run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
24
+ - run: mkdocs gh-deploy --force
25
+env:
26
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
docs/stylesheets/extra.css
@@ -13,6 +13,9 @@
max-width: 90%;
}
+.md-nav__item--section > .md-nav__link[for] {
+ color: inherit;
+}
/*
:root {
0 commit comments