20 lines
604 B
Sass
20 lines
604 B
Sass
---
|
|
---
|
|
// Load the selective Bootstrap
|
|
@use "bootstrap-selective" as *
|
|
|
|
// ----- For non customized Bootstrap builds -----
|
|
// Full Bootstrap import (not recommended for production)
|
|
// @use "bootstrap5/bootstrap" as *
|
|
// -- Optional build packs if don't want full Bootstrap ---
|
|
// @use "bootstrap5/bootstrap-grid" as *
|
|
// @use "bootstrap5/bootstrap-reboot" as *
|
|
// @use "bootstrap5/bootstrap-utilities" as *
|
|
// -----------------------------------------------
|
|
|
|
// Load custom components
|
|
@use "my-project-components" as *
|
|
|
|
// Load custom variables, style for this project
|
|
@use "my-project-styles" as *
|