Exploring the Bootstrap 5 Sass files
In this section, we will explore the Bootstrap 5 Sass files. These files are located in the scss
folder of the downloaded Bootstrap 5 files. We will go through the contents of this folder and its subfolders.
Root folder
In the root of the scss
folder, we have a total of 41 files, of which 37 are Sass partials because they start with an underscore, and the remaining 4 files are regular SCSS files. Here’s an overview with a comment next to each file:
_accordion.scss (component) _alert.scss (component) _badge.scss (component) _breadcrumb.scss (component) _button-group.scss (component) _buttons.scss (component) _card.scss (component) _carousel.scss (component) _close.scss (component) _containers.scss (layout) _dropdown.scss (component) _forms.scss (imports partials from the "forms" folder) _functions.scss (various custom Bootstrap 5 functions) _grid.scss (layout) _helpers.scss (imports partials from the "helpers"...