diff options
| author | chris <[email protected]> | 2022-11-21 23:22:27 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-21 23:22:27 +0100 |
| commit | abdd3fef1fc742d2a21fc6f536cdad0ebb67aa3c (patch) | |
| tree | 958f6fe25327771aadb592a3d70b3a8ad31ed989 /scss | |
| parent | f2e15458da24a089356e3de42df8297f6140059e (diff) | |
| download | bootstrap-abdd3fef1fc742d2a21fc6f536cdad0ebb67aa3c.tar.xz bootstrap-abdd3fef1fc742d2a21fc6f536cdad0ebb67aa3c.zip | |
Keep string representation in `--bs-body-font-family` (#37526)
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_root.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_root.scss b/scss/_root.scss index d9355b38e..60e15152f 100644 --- a/scss/_root.scss +++ b/scss/_root.scss @@ -39,7 +39,7 @@ @if $font-size-root != null { --#{$prefix}root-font-size: #{$font-size-root}; } - --#{$prefix}body-font-family: #{$font-family-base}; + --#{$prefix}body-font-family: #{inspect($font-family-base)}; @include rfs($font-size-base, --#{$prefix}body-font-size); --#{$prefix}body-font-weight: #{$font-weight-base}; --#{$prefix}body-line-height: #{$line-height-base}; |
