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

Commit d78527c

Browse files
ThomasBurlesontinayuangao
authored andcommitted
fix(breakpoints): resolve 1px hole between lg -> xl breakpoints (#159)
* alias `xl` now has mediaQuery == `screen and (min-width: 1920px) and (max-width: 5000px)` fixes #149.
1 parent 9f7137e commit d78527c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/media-query/breakpoints/break-points.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)'
6969
}
7070
];
7171

0 commit comments

Comments
 (0)