Last active
June 21, 2021 20:39
-
-
Save carolineschnapp/031393b49c8bf0e95ab9 to your computer and use it in GitHub Desktop.
Checkout Theme Settings Sassy CSS variable declerations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Checkout theme settings */ | |
// Theme Settings - Checkout | |
$checkout_use_header_image: {{ settings.checkout_use_header_image }}; // boolean | |
// checkout_header_image.png // file | |
$checkout_banner_background_color: {{ settings.checkout_banner_background_color }}; // color | |
$checkout_logo: {{ settings.checkout_use_logo_image }}; // 3 possible values: 'logo.png', 'checkout_logo.png' or ''. | |
$checkout_headline: "{{ settings.checkout_headline }}"; // text | |
$checkout_accent_color: {{ settings.checkout_accent_color }}; // color | |
$checkout_button_color: {{ settings.checkout_button_color }}; // color | |
$checkout_call_to_action_color: {{ settings.checkout_call_to_action_color }}; // color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment