JSFiddle - React, Tailwind, and code Playground
HTML
<div class="elem"></div>
SCSS
$width: 100px;
$height: 150px;
.elem {
background: if($width > $height, red, blue);
width: 200px;
height: 200px;
}
<div class="elem"></div>
$width: 100px;
$height: 150px;
.elem {
background: if($width > $height, red, blue);
width: 200px;
height: 200px;
}