docs: added code blocks without headers (#2560)
This commit is contained in:
@@ -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 Medusa’s CLI with the following command:
|
||||
|
||||
```bash npm2yarn
|
||||
```bash npm2yarn noHeader
|
||||
npm install @medusajs/medusa-cli -g
|
||||
```
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user