Wrap variables in recent SASS format closes #29119

This commit is contained in:
roykho 2021-02-12 15:33:45 -08:00
parent 7a71258257
commit 66155b978b
No known key found for this signature in database
GPG Key ID: 7B36C0EA25795714
1 changed files with 13 additions and 13 deletions

View File

@ -22,17 +22,17 @@ $subtext: #767676 !default; // small,
// export vars as CSS vars // export vars as CSS vars
:root { :root {
--woocommerce: $woocommerce; --woocommerce: #{$woocommerce};
--wc-green: $green; --wc-green: #{$green};
--wc-red: $red; --wc-red: #{$red};
--wc-orange: $orange; --wc-orange: #{$orange};
--wc-blue: $blue; --wc-blue: #{$blue};
--wc-primary: $primary; --wc-primary: #{$primary};
--wc-primary-text: $primarytext; --wc-primary-text: #{$primarytext};
--wc-secondary: $secondary; --wc-secondary: #{$secondary};
--wc-secondary-text: $secondarytext; --wc-secondary-text: #{$secondarytext};
--wc-highlight: $highlight; --wc-highlight: #{$highlight};
--wc-highligh-text: $highlightext; --wc-highligh-text: #{$highlightext};
--wc-content-bg: $contentbg; --wc-content-bg: #{$contentbg};
--wc-subtext: $subtext; --wc-subtext: #{$subtext};
} }