Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Still committed Nov 8, 2023
1 parent 773ce5f commit c68e060
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
16 changes: 8 additions & 8 deletions website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<Your GitHub username> yarn deploy
```

Expand Down
2 changes: 1 addition & 1 deletion website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [{type: 'autogenerated', dirName: '.'}],
docs: [{ type: 'autogenerated', dirName: '.' }]
};

module.exports = sidebars;
1 change: 0 additions & 1 deletion website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c68e060

Please sign in to comment.