@custom-media intersections #275
-
Hello, we use @custom-media --lg-n-above (width >= 1024px);
@custom-media --lg-n-below (width <= 1024px); transpiles into @media (min-width: 1024px) ...
@media (max-width: 1024px) ... Rulesets would then overlap at 1024px letting the cascade win which isn't always possible to control (not using Maybe I'm missing the logic here, but wouldn't this be more accurate? @custom-media --lg-n-above (width >= 1024px);
@custom-media --lg-n-below (width < 1024px); // == (max-width: 1023px) So, just curious. In our copy we eventuall replaced all |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
fixed via #277 |
Beta Was this translation helpful? Give feedback.
fixed via #277