diff --git a/website/README.md b/website/README.md index aaba2fa..8a72864 100644 --- a/website/README.md +++ b/website/README.md @@ -2,39 +2,39 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. -### Installation +## Installation ``` $ yarn ``` -### Local Development +## Local Development -``` +```bash $ yarn start ``` This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. -### Build +## Build -``` +```bash $ yarn build ``` This command generates static content into the `build` directory and can be served using any static contents hosting service. -### Deployment +## Deployment Using SSH: -``` +```bash $ USE_SSH=true yarn deploy ``` Not using SSH: -``` +```bash $ GIT_USER= yarn deploy ``` diff --git a/website/sidebars.js b/website/sidebars.js index aaf96c7..5a48a12 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -2,7 +2,7 @@ /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { - docs: [{type: 'autogenerated', dirName: '.'}], + docs: [{ type: 'autogenerated', dirName: '.' }] }; module.exports = sidebars; diff --git a/website/src/css/custom.css b/website/src/css/custom.css index a55b2a5..de71460 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -19,7 +19,6 @@ --ifm-color-primary-lightest: #38bdf8; --ifm-code-font-size: 95%; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); - --ifm-color-white: #f8fafc; --ifm-color-black: #020617; --ifm-color-gray-100: #f1f5f9;