Romain Menke
Romain Menke
see : https://github.com/csstools/postcss-plugins/issues/151 These features will be removed in the future. We will likely find or create a replacement that is not included in `postcss-preset-env` We will not implement extra...
@tx0c We just released a new version (v8.0.1) and we think it now works correctly : ```css @custom-media --md-up (min-width: 1024px); @custom-media --h-md-up (min-height: 800px); @media (--md-up) and (--h-md-up) {...
@jonathantneal created a PostCSS plugin for this : https://github.com/csstools/custom-units But for `postcss-preset-env` it is to early to include this. At the moment there is only an issue on `csswg-drafts` :...
Hi all! A new version (v8.0.1) has just been released. Can you let us know if this is still giving you problems?
Thank you @LeptoFlare for reaching out, Unfortunately `gap` is one of those features that has no native alternative in older browsers. Even inserting extra elements and dynamically sizing these with...
Technically not possible to fix this in a general way.
> mayybeee Hehe, after typing this up I kept coming back to that :D -------- I think in theory they could work, but them being nested in `@layer` just doesn't...
Thank you @mirisuzanne for finding this issue and sharing this. I've been working on an updated version which ensures this works as you describe : https://github.com/csstools/postcss-plugins/pull/543 The main issue was...
Please don't do this. It's up to end users to manage and optionally lock their dependencies. Pinned versions solve this issue but create another one. - you (maintainer of CRA)...
I am no expert on ESM or CJS but have been following this thread and the pull request because I want to handle this correctly for all plugins we author...