JSFiddle - React, Tailwind, and code Playground

by sebababi

HTML

<a href="#another-page"
				    data-role="button"
				    data-theme="reset"
                    data-inline="true"
				    class="red">iOS Red
				</a>

CSS

/* Red Button */
 a[data-role="button"][data-theme="reset"].red .ui-btn-inner {
    background: -webkit-linear-gradient(top, #DC7679 0%, #DC7679 49%, #CD2A27 50%, #C92A29 100%);
    color:#fff;
}

a {
    text-decoration: none;
text-shadow: 2px 2px #CD2A27;}