0.7.2
Fixed browser prefixing bug where properties in the popular list would never be prefixed when necessary.
In this case user-select
was not properly being resolved to -moz-user-select
in firefox.
Added special handling for []
attribute selectors, when nested within another selector the parent will be pre-pended without a space, as with :
.
z`
:active { }
[some-prop] { }
`
Fixed a bug where styles defined inside a root level media query without a selector were not being added.
// bc red would not have been applied to :root
z.global`
@media only screen {
bc red
}
`
Added border-bottom
to popular properties to give it a higher shorthand priority. Previously bb
resolved to break-before
.