/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Unexpected "{"
Line 16:3 Expected identifier but found "'section-back-button.css'"
Line 18:0 Unexpected "<"
Line 19:3 Expected identifier but found "%"
Line 20:4 Unexpected "<"
Line 21:7 Unexpected "{"
Line 21:16 Expected ":"
Line 22:4 Unexpected "<"
Line 23:3 Expected identifier but found "%"
... and 10 more hidden warnings

**/
{{ 'section-back-button.css' | asset_url | stylesheet_tag }}

<div class="back-button-section page-width" style="text-align: {{ section.settings.alignment }}; margin-top: {{ section.settings.margin_top }}px; margin-bottom: {{ section.settings.margin_bottom }}px;">
  {% if section.settings.show_button %}
    <a href="javascript:history.back()" class="button button--secondary">
      {{ section.settings.button_text }}
    </a>
  {% endif %}
</div>

{% schema %}
{
  "name": "Back Button",
  "tag": "section",
  "class": "section",
  "settings": [
    {
      "type": "checkbox",
      "id": "show_button",
      "label": "Show back button",
      "default": true
    },
    {
      "type": "text",
      "id": "button_text",
      "label": "Button text",
      "default": "← Back to previous page"
    },
    {
      "type": "select",
      "id": "alignment",
      "label": "Button alignment",
      "options": [
        { "value": "left", "label": "Left" },
        { "value": "center", "label": "Center" },
        { "value": "right", "label": "Right" }
      ],
      "default": "left"
    },
    {
      "type": "range",
      "id": "margin_top",
      "label": "Top margin",
      "min": 0,
      "max": 100,
      "step": 4,
      "unit": "px",
      "default": 20
    },
    {
      "type": "range",
      "id": "margin_bottom",
      "label": "Bottom margin",
      "min": 0,
      "max": 100,
      "step": 4,
      "unit": "px",
      "default": 20
    }
  ],
  "presets": [
    {
      "name": "Back Button"
    }
  ]
}
{% endschema %}

{% stylesheet %}
{% endstylesheet %}