JSFiddle - React, Tailwind, and code Playground

by vend3tta

CSS

/** VARIANT 1 */

selector {
  some-rule: some-value;
  some-another-rule: another-value
}
selector child {
  some-child-rule: some-child-value;
  some-another-child-rule: another-child-value
}

/** VARIANT 2 */

selector {
    some-rule: some-value;
    some-another-rule: another-value
    }
    selector child {
        some-child-rule: some-child-value;
        some-another-child-rule: another-child-rule
        }