...
$color : hex | Set anchor color [Advanced configuration only]
$underline: ‘true’ or ‘false’ | Set anchors to be underlined or not [default: ‘false’][Advanced configuration only] [default: ‘false’]
Code Block |
---|
@include standard-links($color: #{map-deep-get($colors, 'primary'), $underline: 'false'}); |
...
$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. [default: 200px][Advanced configuration only]
$linkcolor: hex | Sets the color for any links defined in the footer. Underlining is controlled globally in the Standard Links mixin. [default: #ffffff][Advanced configuration only}
Code Block |
---|
@include simple-footer(
$backgroundcolor: #{map-deep-get($theme-colors, 'footer', 'background')},
$textcolor: #{map-deep-get($theme-colors, 'footer', 'text-color')},
$logowidth: 200px,
$linkcolor: #ffffff
); |
...
Checkout Mixin
Configures the checkout screen.
...