JSFiddle - React, Tailwind, and code Playground

by Joe Saad

HTML

<div class="place">
  <div class="time"></div>
</div>

SCSS

.place{
  width: 200px;
  height: 200px;
  background: red;
  .time{
    background: yellow;
    margin: 10px auto;
    width: 20px; 
    height: 20px;
    filter: invert(100%)
  }
  
}