JSFiddle - React, Tailwind, and code Playground

HTML

<div class="decrease">
    div
</div>

CSS

.decrease{
    transform: translateX(1565px) translateY(159px) translateZ(0px);
}
@media only screen and (max-width: 600px) {
  .decrease {
     transform: translateX(calc(1565px - 140px)) translateY(159px) translateZ(0px);
  }
}