Skip to content

Instantly share code, notes, and snippets.

@freakdesign
Created April 5, 2015 11:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freakdesign/d6a53c0bc2b1ccf0be7e to your computer and use it in GitHub Desktop.
Save freakdesign/d6a53c0bc2b1ccf0be7e to your computer and use it in GitHub Desktop.
Add a basic back button to the shopify checkout (under the logo)
/*
Add a basic back button to the shopify checkout (under the logo)
Usage: Paste this css into you checkout.scss.liquid file
Blog: http://freakdesign.com.au/blogs/news/18127205-add-a-back-button-to-the-responsive-checkout
*/
.shop a:after {
content: '< back to store';
display: inline-block;
padding: .5em .75em;
border: 1px solid currentColor;
margin: 1em 0;
border-radius: 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment