JSFiddle - React, Tailwind, and code Playground

by ckissi

HTML

<button class="btn-grad">
  HoVER ME
</button>

CSS

.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  background-image: linear-gradient(to right, rgb(218, 226, 248) 0%, rgb(214, 164, 164) 51%, rgb(218, 226, 248) 100%);
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}