JSFiddle - React, Tailwind, and code Playground
by ibcLee
HTML
<div class="parent">
<div class="left">left</div>
<div class="right">right</div>
</div>
SCSS
@mixin common{
line-height: 100px;
height: 100px;
text-align: center;
color: white;
}
.parent{
@include common;
.left{
background-color: red;
width: 100%;
float: left;
margin-right: -100px;
}
.right{
background-color: blue;
float: right;
width: 100px;
}
}