Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • $headertext : hex | Sets the header text color in checkout [Advanced configuration only]

  • $headertextactive : hex | Sets the header active text color in checkout [Advanced configuration only]

  • $headercolor : hex | Sets the background color for checkout header [Advanced configuration only]

  • $footertext : hex | Sets the background color for checkout footer [Advanced configuration only]

  • $footercolor : hex | Sets the background color for checkout footer [Advanced configuration only]

  • $logowidth : px | Sets the width of the logo in checkout. The height will auto scale. [Advanced configuration only]

Code Block
@include checkout-mixin(
    $headertext: #{map-deep-get($theme-colors, 'checkout', 'header-text')},
    $headertextactive: #{map-deep-get($theme-colors, 'checkout', 'header-text-active')},
    $headercolor: #{map-deep-get($theme-colors, 'checkout', 'header-background')},
    $footertext: #{map-deep-get($theme-colors, 'checkout', 'footer-text')},
    $footercolor: #{map-deep-get($theme-colors, 'checkout', 'footer-background')},
    $logowidth: 230px
);

...