JSFiddle - React, Tailwind, and code Playground
by der_robert
HTML
<a href="#" class="push_button red">Bearbeiten</a>
<a href="#" class="push_button blue">Löschen</a>
CSS
html{
padding:20px;
}
body {
width: 250px;
margin: 0 auto;
}
.push_button {
position: relative;
width: 70px;
height:40px;
text-align:center;
color:#FFF;
text-decoration:none;
line-height:43px;
display: block;
background-color: #11821a;
}
.push_button:active {
top:1px;
left: 1px;
}