Skip to content

Commit 1c80bd9

Browse files
authoredJul 23, 2023
Fix some typos in Customize > Sass doc (#38948)
1 parent d45cc7e commit 1c80bd9

File tree

1 file changed

+8
-8
lines changed
  • site/content/docs/5.3/customize

1 file changed

+8
-8
lines changed
 

‎site/content/docs/5.3/customize/sass.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ Whenever possible, avoid modifying Bootstrap's core files. For Sass, that means
1414

1515
```text
1616
your-project/
17-
├── scss
17+
├── scss/
1818
│ └── custom.scss
1919
└── node_modules/
20-
│ └── bootstrap
21-
│ ├── js
22-
│ └── scss
20+
│ └── bootstrap/
21+
│ ├── js/
22+
│ └── scss/
2323
└── index.html
2424
```
2525

2626
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.
2727

2828
```text
2929
your-project/
30-
├── scss
30+
├── scss/
3131
│ └── custom.scss
3232
├── bootstrap/
33-
│ ├── js
34-
│ └── scss
33+
│ ├── js/
34+
│ └── scss/
3535
└── index.html
3636
```
3737

@@ -104,7 +104,7 @@ sass --watch ./scss/custom.scss ./css/custom.css
104104
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).
105105

106106
{{< callout info >}}
107-
**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).
107+
**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).
108108
{{< /callout >}}
109109

110110
## Including

0 commit comments

Comments
 (0)
Please sign in to comment.