Merge pull request #29120 from woocommerce/fix/issue-29119
Wrap variables in recent SASS format closes #29119
This commit is contained in:
commit
949019f662
|
@ -22,17 +22,17 @@ $subtext: #767676 !default; // small,
|
|||
|
||||
// export vars as CSS vars
|
||||
:root {
|
||||
--woocommerce: $woocommerce;
|
||||
--wc-green: $green;
|
||||
--wc-red: $red;
|
||||
--wc-orange: $orange;
|
||||
--wc-blue: $blue;
|
||||
--wc-primary: $primary;
|
||||
--wc-primary-text: $primarytext;
|
||||
--wc-secondary: $secondary;
|
||||
--wc-secondary-text: $secondarytext;
|
||||
--wc-highlight: $highlight;
|
||||
--wc-highligh-text: $highlightext;
|
||||
--wc-content-bg: $contentbg;
|
||||
--wc-subtext: $subtext;
|
||||
--woocommerce: #{$woocommerce};
|
||||
--wc-green: #{$green};
|
||||
--wc-red: #{$red};
|
||||
--wc-orange: #{$orange};
|
||||
--wc-blue: #{$blue};
|
||||
--wc-primary: #{$primary};
|
||||
--wc-primary-text: #{$primarytext};
|
||||
--wc-secondary: #{$secondary};
|
||||
--wc-secondary-text: #{$secondarytext};
|
||||
--wc-highlight: #{$highlight};
|
||||
--wc-highligh-text: #{$highlightext};
|
||||
--wc-content-bg: #{$contentbg};
|
||||
--wc-subtext: #{$subtext};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue