JSFiddle - React, Tailwind, and code Playground

by SebastianPataneMasuelli

HTML

<ul class="widgets">

     <li><h2>Widget title 1</h2>
          <ul>
          ....my widget content
          </ul>
     </li>

     <li><h2>Custom widget 1</h2>
          <ul class="tabs">
          ...this one I want to have padding:0..
          </ul>
     </li>

</ul>

CSS

.widgets ul {padding: 10px; border: 1px solid red;}
.widgets ul.tabs {padding:0; border: 1px solid blue;}