diff options
| author | Travis Risner <[email protected]> | 2021-11-25 18:01:19 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-25 14:01:19 -1000 |
| commit | 45eb70e03c1905d247c6e012fff9e263d1326066 (patch) | |
| tree | e98dd14e6fb340a7de90e19bd971c68f46e4fadd /scss/_reboot.scss | |
| parent | 3c8fbb6581aabd02603cf3876770e526a7b870fd (diff) | |
| download | bootstrap-45eb70e03c1905d247c6e012fff9e263d1326066.tar.xz bootstrap-45eb70e03c1905d247c6e012fff9e263d1326066.zip | |
Correctly implement RFS in `:root` CSS variable for `$body-font-size` (#35326)
* rfs fix
* Update scss/_root.scss
* Update _reboot.scss
Co-authored-by: Mark Otto <[email protected]>
Co-authored-by: Mark Otto <[email protected]>
Diffstat (limited to 'scss/_reboot.scss')
| -rw-r--r-- | scss/_reboot.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index acd1138bb..bf0eb9e25 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -49,7 +49,7 @@ body { margin: 0; // 1 font-family: var(--#{$variable-prefix}body-font-family); - @include font-size(var(--#{$variable-prefix}body-font-size)); + font-size: var(--#{$variable-prefix}body-font-size); font-weight: var(--#{$variable-prefix}body-font-weight); line-height: var(--#{$variable-prefix}body-line-height); color: var(--#{$variable-prefix}body-color); |
