ademilter / bricklayer

Lightweight and independent Pinterest-like cascading grid layout library
http://bricklayer.js.org
Other
2.46k stars 119 forks source link

Small mistake in wiki page #22

Open daattali opened 8 years ago

daattali commented 8 years ago

In the quick start page, there's an example that shows the following CSS:

@media screen and (min-width: 1200px) {
   ...
}
@media screen and (min-width: 768px) {
  ...
}

The order of these two rules should be reversed. The way it is now, a page with width > 1200 will actually use the 768 rule because it will overwrite the other one because it's defined later.