JSFiddle - React, Tailwind, and code Playground

by for3v3rforgott3n

HTML

<div class="click-items">
	<a ng-click="" class="delete-song clickable" title="Remove song">
	    <span>&#10006;</span>
	</a>
	<a ng-click="" class="share-song clickable">
		<span class="plus-sign" title="Add song">&#10006;</span>
	</a>
</div>

CSS

.click-items {
    float: left;
}

.click-items > a {
  display: inline-block;
  float: right;
  text-align: center;
  background-color: #EEE;
  color: #888;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin: 0 0 5px 5px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.plus-sign {
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  writing-mode: lr-tb;
}

.clickable:hover {
  color: red;
}

.delete-article {

}