blob: 80d92d21be9acffc845f6a3f34e02ce2d8feafde [file] [edit]
// check-unused-imports-disable — all @use statements load component CSS (side-effect imports).
/* Bootstrap Docs (https://getbootstrap.com/)
* Copyright 2011-2026 The Bootstrap Authors
* Licensed under the Creative Commons Attribution 3.0 Unported License.
* For details, see https://creativecommons.org/licenses/by/3.0/.
*/
// Dev notes
//
// Background information on nomenclature and architecture decisions here.
//
// - Bootstrap functions, variables, and mixins are included for easy reuse.
// Doing so gives us access to the same core utilities provided by Bootstrap.
// For example, consistent media queries through those mixins.
//
// - Bootstrap's **docs variables** are prefixed with `$bd-`.
// These custom colors avoid collision with the components Bootstrap provides.
//
// - Classes are prefixed with `.bd-`.
// These classes indicate custom-built or modified components for the design
// and layout of the Bootstrap docs. They are not included in our builds.
//
// Happy Bootstrapping!
// Load docs components
// @use "variables";
@use "navbar";
@use "masthead";
@use "ads";
@use "content";
@use "skippy";
@use "sidebar";
@use "layout";
@use "toc";
@use "footer";
@use "component-examples";
@use "badge";
@use "callouts";
@use "details";
@use "brand";
@use "clipboard-js";
@use "placeholder-img";
@use "scrolling";
@use "patterns";
// Load docs dependencies
@use "syntax";
@use "anchor";