Skip to content

Commit

Permalink
fix(breakpoints): resolve 1px hole between lg -> xl breakpoints (#159)
Browse files Browse the repository at this point in the history
* alias `xl` now has mediaQuery == `screen and (min-width: 1920px) and (max-width: 5000px)`

fixes #149.
  • Loading branch information
ThomasBurleson authored and tinayuangao committed Feb 8, 2017
1 parent 9f7137e commit d78527c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/media-query/breakpoints/break-points.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const RAW_DEFAULTS: BreakPoint[ ] = [
alias: 'xl',
suffix: 'Xl',
overlapping: false,
mediaQuery: 'screen and (min-width: 1921px)' // should be distinct from 'gt-lg' range
mediaQuery: 'screen and (min-width: 1920px) and (max-width: 5000px)'
}
];

Expand Down

0 comments on commit d78527c

Please sign in to comment.