JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <div class="parent">
    <div class="child"></div>
  </div>
</div>

SCSS

.parent {
  transform: translateX(50%);
  
  .child {
    transform: rotate(10deg);
  }
}

.child {
  width: 50px;
  height: 50px;
  background: red;
}