JSFiddle - React, Tailwind, and code Playground

by yaero

HTML

<section class="form-section">
  <div class=""></div>
  <div class="form-section"></div>
  <div class="form-section"></div>
  <div class="form-section"></div>
</section>

SCSS

.form-section {
  > .form-section {
    margin: 5px;
    width: 300px;
    height: 100px;
    background-color: blue;
  }
  
  .form-section:first-of-type {
    background-color: red;
  }
}