segmentio / myth

A CSS preprocessor that acts like a polyfill for future versions of the spec.
4.33k stars 131 forks source link

var not allowed in media (declaration) #147

Open willstdueswissen opened 7 years ago

willstdueswissen commented 7 years ago

first question:

this: @custom-media --smaller-media only screen and (max-width: var(--smaller-max-width));

compiles to: @media only screen and (max-width: var(--smaller-max-width)) {

also this: @media only screen and (max-width: var(--smaller-max-width)) {

compiles to nothing (error: ARNING: undefined CSS custom media alias "--smaller-max-width")

why?

and second, is the mainter avaible? Or is the project not longer maintained?