We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afcb3ea commit 1038950Copy full SHA for 1038950
src/cdk/layout/breakpoints.ts
@@ -8,6 +8,12 @@
8
// PascalCase is being used as Breakpoints is used like an enum.
9
// tslint:disable-next-line:variable-name
10
export const Breakpoints = {
11
+ XSmall: '(max-width: 599px)',
12
+ Small: '(min-width: 600px) and (max-width: 959px)',
13
+ Medium: '(min-width: 960px) and (max-width: 1279px)',
14
+ Large: '(min-width: 1280px) and (max-width: 1919px)',
15
+ XLarge: '(min-width: 1920px)',
16
+
17
Handset: '(max-width: 599px) and (orientation: portrait), ' +
18
'(max-width: 959px) and (orientation: landscape)',
19
Tablet: '(min-width: 600px) and (max-width: 839px) and (orientation: portrait), ' +
0 commit comments