diff options
| author | Mark Otto <[email protected]> | 2021-09-08 20:18:22 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2022-03-08 14:53:53 -0800 |
| commit | 2e75ec3c41a54865caa48f46485a1c90b12b0de6 (patch) | |
| tree | 560f8c088c81b0fd60e96b959c11e28969f86e9f /scss/_tooltip.scss | |
| parent | 91312486b2a07325491bab3507f469b681ac724c (diff) | |
| download | bootstrap-2e75ec3c41a54865caa48f46485a1c90b12b0de6.tar.xz bootstrap-2e75ec3c41a54865caa48f46485a1c90b12b0de6.zip | |
Convert popovers to CSS variables
Diffstat (limited to 'scss/_tooltip.scss')
| -rw-r--r-- | scss/_tooltip.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss index 7fbf70695..5c92b5549 100644 --- a/scss/_tooltip.scss +++ b/scss/_tooltip.scss @@ -1,3 +1,5 @@ +// stylelint-disable custom-property-empty-line-before + // Base class .tooltip { // scss-docs-start tooltip-css-vars @@ -6,7 +8,7 @@ --#{$variable-prefix}tooltip-padding-x: #{$tooltip-padding-x}; --#{$variable-prefix}tooltip-padding-y: #{$tooltip-padding-y}; --#{$variable-prefix}tooltip-margin: #{$tooltip-margin}; - --#{$variable-prefix}tooltip-font-size: #{$tooltip-font-size}; + @include rfs($tooltip-font-size, --#{$variable-prefix}tooltip-font-size); --#{$variable-prefix}tooltip-color: #{$tooltip-color}; --#{$variable-prefix}tooltip-bg: #{$tooltip-bg}; --#{$variable-prefix}tooltip-border-radius: #{$tooltip-border-radius}; |
