JSFiddle - React, Tailwind, and code Playground

by Hugo Vale Pereira

HTML

<div class="container">
  <div class="container__element --secondary">
      Black
      <span class=" container__element--secondary__span ">A</span>
  </div>
  
  <div class="container__element ">
    Yellow
  </div>
</div>

SASS

.container
  &__element
    font-family: Helvetica
    color: black
    &--secondary
      color: yellow