mirror of
https://github.com/twbs/bootstrap.git
synced 2025-09-30 23:36:47 +02:00
* Reorganize scss folder * Migrate to Sass modules * Migrate docs to Sass modules, comment out docs grid CSS * Give helpers folder an index.scss, migrate ratio helper to aspect-ratio utility * Delete node sass Action * Modify Sass tests to pass for new Sass modules implementation * Don't disallow calc() * Move heading classes back to Reboot to prevent a dependency * Utilities, some helpers, and theme colors * Temporary fix of docs compilation * Temporary Bundlewatch fix * docs fix import to use * Restyle docs callouts * Fix docs colors * Revert typo * Reintroduce `css-lint-vars` npm script * Bump to Sass v1.90.x * Fixes * more * Remove --------- Co-authored-by: Julien Déramond <juderamond@gmail.com>
58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
SCSS
@use "banner" with (
|
|
$file: "Grid"
|
|
);
|
|
|
|
@use "sass:map";
|
|
@use "colors" as *;
|
|
@use "config" as *;
|
|
@use "variables" as *;
|
|
@use "functions" as *;
|
|
// @use "maps" as *;
|
|
|
|
@forward "utilities"; // Make utilities available downstream
|
|
@use "utilities" as *; // Bring utilities into the current namespace
|
|
|
|
@forward "layout/containers";
|
|
@forward "layout/grid";
|
|
|
|
// stylelint-disable-next-line scss/dollar-variable-default
|
|
$utilities: map-get-multiple(
|
|
$utilities,
|
|
(
|
|
"display",
|
|
"order",
|
|
"flex",
|
|
"flex-direction",
|
|
"flex-grow",
|
|
"flex-shrink",
|
|
"flex-wrap",
|
|
"justify-content",
|
|
"align-items",
|
|
"align-content",
|
|
"align-self",
|
|
"margin",
|
|
"margin-x",
|
|
"margin-y",
|
|
"margin-top",
|
|
"margin-end",
|
|
"margin-bottom",
|
|
"margin-start",
|
|
"negative-margin",
|
|
"negative-margin-x",
|
|
"negative-margin-y",
|
|
"negative-margin-top",
|
|
"negative-margin-end",
|
|
"negative-margin-bottom",
|
|
"negative-margin-start",
|
|
"padding",
|
|
"padding-x",
|
|
"padding-y",
|
|
"padding-top",
|
|
"padding-end",
|
|
"padding-bottom",
|
|
"padding-start",
|
|
)
|
|
);
|
|
|
|
@use "utilities/api";
|