JSFiddle - React, Tailwind, and code Playground
HTML
<div>
hello
</div>
SCSS
div {
&:after {
--background: green;
--rotate: 30deg;
display: block;
content: '';
width: 20px;
height: 20px;
transform: rotate(var(--rotate, 25deg));
background: var(--background, red);
}
}