...
$backgroundcolor : hex | Sets the background color for the simple footer [default: 'footer-background']
$textcolor : hex | Sets the text color for the simple footer [default: #ffffff][Advanced configuration only]
$logowidth: pixels | Sets the width for the footer logo. Height is hard coded as auto.
Code Block |
---|
@include simple-footer(
$backgroundcolor: #{map-deep-get($theme-colors, 'footer', 'background')},
$textcolor: #{map-deep-get($theme-colors, 'footer', 'text-color')},
$logowidth: 200px
); |
...
Checkout Mixin
Configures the checkout screen.
...