/ c4f / front / node_modules / postcss-nested /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE8 months ago1.1K 
[TXT]README.md8 months ago2.0K 
[TXT]index.d.ts8 months ago1.1K 
[   ]index.js8 months ago8.8K 
[   ]package.json8 months ago597  
README.md

PostCSS Nested

PostCSS plugin to unwrap nested rules closer to Sass syntax.

.phone {
    &_title {
        width: 500px;
        @media (max-width: 500px) {
            width: auto;
        }
        body.is_dark & {
            color: white;
        }
    }
    img {
        display: block;
    }
}

.title {
  font-size: var(--font);

  @at-root html {
      --font: 16px
  }
}

will be processed to:

.phone_title {
    width: 500px;
}
@media (max-width: 500px) {
    .phone_title {
        width: auto;
    }
}
body.is_dark .phone_title {
    color: white;
}
.phone img {
    display: block;
}

.title {
  font-size: var(--font);
}
html {
  --font: 16px
}

Related plugins:

Alternatives:

Sponsored by Evil Martians

Docs

Read full docs here.

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80