From d558cd08ab25b0e7aad89c81aac9d2488b38bebf Mon Sep 17 00:00:00 2001 From: Fox Danger Piacenti Date: Tue, 7 Jan 2025 13:10:43 -0600 Subject: [PATCH] docs: Better indicate include options in sass setup. --- site/content/docs/5.3/customize/sass.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/content/docs/5.3/customize/sass.md b/site/content/docs/5.3/customize/sass.md index b585aecbb05a..89725a9fdaf2 100644 --- a/site/content/docs/5.3/customize/sass.md +++ b/site/content/docs/5.3/customize/sass.md @@ -70,7 +70,7 @@ In your `custom.scss`, you'll import Bootstrap's source Sass files. You have two @import "../node_modules/bootstrap/scss/mixins"; @import "../node_modules/bootstrap/scss/root"; -// 6. Optionally include any other parts as needed +// 6. Include any other optional stylesheet partials as desired; list below is not inclusive of all available stylesheets @import "../node_modules/bootstrap/scss/utilities"; @import "../node_modules/bootstrap/scss/reboot"; @import "../node_modules/bootstrap/scss/type"; @@ -78,6 +78,7 @@ In your `custom.scss`, you'll import Bootstrap's source Sass files. You have two @import "../node_modules/bootstrap/scss/containers"; @import "../node_modules/bootstrap/scss/grid"; @import "../node_modules/bootstrap/scss/helpers"; +// ... // 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss` @import "../node_modules/bootstrap/scss/utilities/api";