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

Commit 7163f23

Browse files
fix(breakpoints): resolve 1px hole between lg -> xl breakpoints
fixes #149.
1 parent aaeb525 commit 7163f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/media-query/providers/break-points-provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const RAW_DEFAULTS: BreakPoint[ ] = [
6565
alias: 'xl',
6666
suffix: 'Xl',
6767
overlapping: false,
68-
mediaQuery: 'screen and (min-width: 1921px)' // should be distinct from 'gt-lg' range
68+
mediaQuery: 'screen and (min-width: 1920px) and (max-width: 5000px)' // should be distinct from 'gt-lg' range
6969
}
7070
];
7171

0 commit comments

Comments
 (0)