JSFiddle - React, Tailwind, and code Playground

by CreativeDreams

HTML

<div class="btn">
  Hello World
</div>

SCSS

.btn {
  width: 300px;
  height: 50px;
  background: #3B55E6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: Helvetica Neue;
  transition-property: background;
  transition-duration: 0.5s;
  
  &:hover {
    background: #3FCDFD;
  }
}