Skip to content

Commit

Permalink
fix(utilities): better matching with the brand for some color values
Browse files Browse the repository at this point in the history
  • Loading branch information
ffoodd committed Jul 20, 2020
1 parent ea22c14 commit 5e82914
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ body {
hr {
margin: $hr-margin-y 0;
color: $hr-color; // 1
background-color: currentColor;
background-color: currentColor !important; // Boosted mod: ensure .text-* utilities can't override this
border: 0;
opacity: $hr-opacity;
}
Expand Down
4 changes: 2 additions & 2 deletions scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $utilities: map-merge(
(
"white": $white,
"light": $gray-500,
"gray": $gray-700
"dark": $gray-700
)
)
),
Expand Down Expand Up @@ -386,7 +386,7 @@ $utilities: map-merge(
class: text,
values: (
"primary": $primary,
"light": $light,
"light": $gray-500,
"white": $white,
"body": $body-color,
"muted": $gray-700,
Expand Down
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ $blockquote-letter-spacing: $letter-spacing-base * .25 !default; // Boosted mo
$hr-margin-y: $spacer !default;
$hr-color: inherit !default;
$hr-height: $border-width !default;
$hr-opacity: .25 !default;
$hr-opacity: null !default;

$legend-margin-bottom: $spacer / 4 !default;
$legend-font-size: $font-size-xlg !default;
Expand Down

0 comments on commit 5e82914

Please sign in to comment.