From 6f54c3164adaab234e6da524417ebc57bc586d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Sun, 23 Jul 2023 11:00:02 +0200 Subject: [PATCH] Fix some typos in Customize > Sass doc --- site/content/docs/5.3/customize/sass.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/site/content/docs/5.3/customize/sass.md b/site/content/docs/5.3/customize/sass.md index 1f292c9920a4..ceadf3a98cd5 100644 --- a/site/content/docs/5.3/customize/sass.md +++ b/site/content/docs/5.3/customize/sass.md @@ -14,12 +14,12 @@ Whenever possible, avoid modifying Bootstrap's core files. For Sass, that means ```text your-project/ -├── scss +├── scss/ │ └── custom.scss └── node_modules/ -│ └── bootstrap -│ ├── js -│ └── scss +│ └── bootstrap/ +│ ├── js/ +│ └── scss/ └── index.html ``` @@ -27,11 +27,11 @@ If you've downloaded our source files and aren't using a package manager, you'll ```text your-project/ -├── scss +├── scss/ │ └── custom.scss ├── bootstrap/ -│ ├── js -│ └── scss +│ ├── js/ +│ └── scss/ └── index.html ``` @@ -104,7 +104,7 @@ sass --watch ./scss/custom.scss ./css/custom.css Learn more about your options at [sass-lang.com/install](https://sass-lang.com/install) and [compiling with VS Code](https://code.visualstudio.com/docs/languages/css#_transpiling-sass-and-less-into-css). {{< callout info >}} -**Using Bootstrap with another build tool?** Consider reading our guides for compiling with [WebPack]({{< docsref "/getting-started/webpack" >}}), [Parcel]({{< docsref "/getting-started/parcel" >}}), or [Vite]({{< docsref "/getting-started/vite" >}}). We also have production-ready demos in [our examples repository on GitHub](https://github.com/twbs/examples). +**Using Bootstrap with another build tool?** Consider reading our guides for compiling with [Webpack]({{< docsref "/getting-started/webpack" >}}), [Parcel]({{< docsref "/getting-started/parcel" >}}), or [Vite]({{< docsref "/getting-started/vite" >}}). We also have production-ready demos in [our examples repository on GitHub](https://github.com/twbs/examples). {{< /callout >}} ## Including