docs: added code blocks without headers (#2560)

This commit is contained in:
Shahed Nasser
2022-11-07 17:36:51 +02:00
committed by GitHub
parent bbf4039147
commit c0639ef708
35 changed files with 336 additions and 98 deletions

View File

@@ -18,7 +18,7 @@ Node.js is the environment that makes it possible for Medusa to run, so you must
Medusa supports versions 14 and 16 of Node.js. You can check your Node.js version using the following command:
```bash
```bash noHeader
node -v
```
@@ -118,7 +118,7 @@ The final installation required to get started with Medusa is the Medusa CLI. It
You can install Medusas CLI with the following command:
```bash npm2yarn
```bash npm2yarn noHeader
npm install @medusajs/medusa-cli -g
```

View File

@@ -1,10 +1,11 @@
.osTabs {
background-color: #f4f4f4;
background-color: var(--ifm-note-background);
padding: 10px;
border-radius: 6.4px;
color: #000;
border: 1px solid var(--ifm-note-border-color);
border-radius: var(--ifm-global-radius);
color: var(--ifm-alert-foreground-color);
}
.osTabs li:not([aria-selected=true]) {
color: #000;
color: var(--ifm-color-content);
}