You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
In the quick start page, there's an example that shows the following CSS:
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.
The text was updated successfully, but these errors were encountered: