Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix($mdConstant): fix overlapping in media-queries
Browse files Browse the repository at this point in the history
Fixes #3423.
Closes #3451.
  • Loading branch information
gkalpak authored and Splaktar committed Jul 4, 2015
1 parent 0113ff3 commit e7028fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/util/constant.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ function MdConstantFactory($$rAF, $sniffer) {
ANIMATION_DIRECTION: vendorProperty('animationDirection')
},
MEDIA: {
'sm': '(max-width: 600px)',
'sm': '(max-width: 599px)',
'gt-sm': '(min-width: 600px)',
'md': '(min-width: 600px) and (max-width: 960px)',
'md': '(min-width: 600px) and (max-width: 959px)',
'gt-md': '(min-width: 960px)',
'lg': '(min-width: 960px) and (max-width: 1200px)',
'lg': '(min-width: 960px) and (max-width: 1199px)',
'gt-lg': '(min-width: 1200px)'
},
MEDIA_PRIORITY: [
Expand Down

0 comments on commit e7028fb

Please sign in to comment.