Git Product home page Git Product logo

Comments (5)

MoOx avatar MoOx commented on July 23, 2024

It's more an order issue. Be careful with the order of your transformation.

This is perfectly working in cssnext playground

I tested this

@media (--lg-viewport) {
  #Selector1 {
  }
}

#Selector2 {
  @media (--lg-viewport) {
  }
}

@custom-media --lg-viewport screen and (min-width: 60em);

got this

@media screen and (min-width: 60em) {
  #Selector1 {
  }
}

#Selector2 {
}

@media screen and (min-width: 60em) {
  #Selector2 {
  }
  }

from postcss-custom-media.

smuemd avatar smuemd commented on July 23, 2024

I am just using:

  1. postcss-import
  2. postcss-cssnext

in that order.

could this possibly be an issue with the static site generator then? (using spike on this one.

from postcss-custom-media.

smuemd avatar smuemd commented on July 23, 2024

I investigated further.
If I actually put everything in a single file it works for me too:

/*  single file works */
#Selector2 {
  @media (--lg-viewport) {
  }
}

@custom-media --lg-viewport screen and (min-width: 60em);

But I 've split things up in multiple directories. So its more like this

/* in css_modules/components-hero/lib/hero.css */
#Selector2 {
  @media (--lg-viewport) {
  }
}

/* in css_modules/theme-default/lib/theme.css */
@custom-media --lg-viewport screen and (min-width: 60em);

/* and finally in index.css */
@import 'components-hero';
@import 'theme-default';

Here is my tree:

├── css_modules
│   ├── components-hero
│   │   ├── index.css
│   │   └── lib
│   │       └── hero.css
│   └── theme-default
│       ├── index.css
│       └── lib
│           ├── default-map.css
│           └── default.css
└── index.css

Maybe postcss-import is the culprit?

from postcss-custom-media.

MoOx avatar MoOx commented on July 23, 2024

Looks like yes.

from postcss-custom-media.

smuemd avatar smuemd commented on July 23, 2024

Ok. Will Open the issue over there then.
Thanks

from postcss-custom-media.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.