docs: adjust font size of sidebar items (#2158)

* adjust font size

* made sidebar narrower
This commit is contained in:
Shahed Nasser
2022-09-07 19:20:51 +03:00
committed by GitHub
parent 7b98e6e009
commit 65654c551f
5 changed files with 26 additions and 13 deletions
+6 -2
View File
@@ -57,7 +57,7 @@ In the body of the PR, explain clearly what the PR does. If the PR solves an iss
## Sidebar
When you add a new page to the documentation, you must add the new page in `www/docs/sidebars.js` under the `tutorialSidebar`. You can learn more about the syntax used [here](https://docusaurus.io/docs/sidebar/items).
When you add a new page to the documentation, you must add the new page in `www/docs/sidebars.js` under the `docsSidebar`. You can learn more about the syntax used [here](https://docusaurus.io/docs/sidebar/items).
### Terminology
@@ -65,6 +65,10 @@ When the documentation page is a conceptual or overview documentation, the label
When the documentation page is a tutorial documentation, the label in the sidebar should start with a verb. An exception of this rule are integration documentations and upgrade guides.
### Character Count
The character count of the sidebar item's label must be at most twenty seven characters.
## Notes and Additional Information
When displaying notes and additional information in a documentation page, use [Admonitions](https://docusaurus.io/docs/markdown-features/admonitions). Make sure the type of admonition used matches the notes importance to the current document.
@@ -109,7 +113,7 @@ For example, even though you can run the `start` script using NPM with `npm star
When a command uses the global option `-g`, add it at the end of the NPM command to ensure that its transformed to a Yarn command properly. For example:
```bash
```bash npm2yarn
npm install @medusajs/medusa-cli -g
```