diff options
| author | Florian Lacreuse <[email protected]> | 2020-07-09 17:40:54 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2020-07-11 12:01:15 -0700 |
| commit | 19b5908b05294fdb26e0b242b62e2a2227c9c89b (patch) | |
| tree | 21708d8ba70e1c347075bbc0ca5dc3593b64dc2b | |
| parent | 2b4db023cd3272f30ae9c5d80451e253a8e3383f (diff) | |
| download | bootstrap-19b5908b05294fdb26e0b242b62e2a2227c9c89b.tar.xz bootstrap-19b5908b05294fdb26e0b242b62e2a2227c9c89b.zip | |
Fix docs sass importing example.
| -rw-r--r-- | site/content/docs/5.0/customize/sass.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/site/content/docs/5.0/customize/sass.md b/site/content/docs/5.0/customize/sass.md index 92f2e6001..2c0a1b9ed 100644 --- a/site/content/docs/5.0/customize/sass.md +++ b/site/content/docs/5.0/customize/sass.md @@ -54,10 +54,11 @@ In your `custom.scss`, you'll import Bootstrap's source Sass files. You have two @import "../node_modules/bootstrap/scss/mixins"; // Optional +@import "../node_modules/bootstrap/scss/root"; @import "../node_modules/bootstrap/scss/reboot"; @import "../node_modules/bootstrap/scss/type"; @import "../node_modules/bootstrap/scss/images"; -@import "../node_modules/bootstrap/scss/code"; +@import "../node_modules/bootstrap/scss/containers"; @import "../node_modules/bootstrap/scss/grid"; {{< /highlight >}} |
