stylus / nib

Stylus mixins, utilities, components, and gradient image generation
http://stylus.github.io/nib
MIT License
1.91k stars 249 forks source link

"Size" utility conflicts with @page rule. #326

Open seleckis opened 8 years ago

seleckis commented 8 years ago

Take a look: http://www.w3.org/TR/css3-page/#page-size-prop

This:

@page
    size 20em 30em

produces this

@page {
  width: 20em;
  height: 30em;
}

but should not.

I suggest to rename "size" utility with for example "sizes" or something else.