Skip to content

Commit

Permalink
Fix some typos in Customize > Sass doc (twbs#38948)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond authored and romankupchak93 committed Jan 5, 2024
1 parent 6c423c7 commit 9ce96db
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions site/content/docs/5.3/customize/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ 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
```

If you've downloaded our source files and aren't using a package manager, you'll want to manually create something similar to that structure, keeping Bootstrap's source files separate from your own.

```text
your-project/
├── scss
├── scss/
│ └── custom.scss
├── bootstrap/
│ ├── js
│ └── scss
│ ├── js/
│ └── scss/
└── index.html
```

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9ce96db

Please sign in to comment.