]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix some typos in Customize > Sass doc (#38948)
authorJulien Déramond <juderamond@gmail.com>
Sun, 23 Jul 2023 19:07:23 +0000 (21:07 +0200)
committerGitHub <noreply@github.com>
Sun, 23 Jul 2023 19:07:23 +0000 (22:07 +0300)
site/content/docs/5.3/customize/sass.md

index 1f292c9920a436e8f5968078e5a9cf7541f48967..ceadf3a98cd541e600a589e597a842128e9159ae 100644 (file)
@@ -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