1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 04:41:36 +02:00

Redo background and color utilities with new classes and more

This commit is contained in:
Mark Otto
2025-05-26 22:58:38 -07:00
parent 18f90fbd3b
commit 015f19a0a3
5 changed files with 93 additions and 125 deletions

View File

@@ -60,13 +60,13 @@
}
@each $key, $value in $theme-bgs {
// $key: if($key == 0, "", "-" + $key);
--#{$prefix}bg-#{$key}: #{$value};
$key: if($key == null, "", "-" + $key);
--#{$prefix}bg#{$key}: #{$value};
}
@each $key, $value in $theme-fgs {
// $key: if($key == 0, "", "-" + $key);
--#{$prefix}fg-#{$key}: #{$value};
$key: if($key == null, "", "-" + $key);
--#{$prefix}fg#{$key}: #{$value};
}
@each $key, $value in $theme-borders {