Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
fix(breakpoints): resolve 1px hole between lg -> xl breakpoints
Browse files Browse the repository at this point in the history
fixes #149.
  • Loading branch information
ThomasBurleson committed Feb 5, 2017
1 parent aaeb525 commit 7163f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/media-query/providers/break-points-provider.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)' // should be distinct from 'gt-lg' range
}
];

Expand Down

0 comments on commit 7163f23

Please sign in to comment.