Skip to content

Commit

Permalink
Merge branch 'main' into main-fod-docs-svg-placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Sep 4, 2020
2 parents 9434aff + fb9bf54 commit a53f49d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
14 changes: 8 additions & 6 deletions site/assets/scss/_callouts.scss
Expand Up @@ -28,12 +28,14 @@
}

// Variations
@mixin bs-callout-variant($color) {
border-left-color: $color;
.bd-callout-info {
border-left-color: $bd-info;
}

h4 { color: $color; }
.bd-callout-warning {
border-left-color: $bd-warning;
}

.bd-callout-info { @include bs-callout-variant($bd-info); }
.bd-callout-warning { @include bs-callout-variant($bd-warning); }
.bd-callout-danger { @include bs-callout-variant($bd-danger); }
.bd-callout-danger {
border-left-color: $bd-danger;
}
3 changes: 2 additions & 1 deletion site/content/docs/5.0/getting-started/build-tools.md
Expand Up @@ -13,7 +13,8 @@ Bootstrap uses [npm scripts](https://docs.npmjs.com/misc/scripts) for its build
To use our build system and run our documentation locally, you'll need a copy of Bootstrap's source files and Node. Follow these steps and you should be ready to rock:

1. [Download and install Node.js](https://nodejs.org/en/download/), which we use to manage our dependencies.
2. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [package.json]({{< param repo >}}/blob/v{{< param current_version >}}/package.json).
2. Either [download Bootstrap's sources]({{< param "download.source" >}}) or fork [Bootstrap's repository]({{< param repo >}}).
3. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [package.json]({{< param repo >}}/blob/v{{< param current_version >}}/package.json).

When completed, you'll be able to run the various commands provided from the command line.

Expand Down

0 comments on commit a53f49d

Please sign in to comment.