You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(cdk/layout): better explain how layout breakpoints work (#22821)
I'm copying the actual breakpoints here for reference because it's much
easier to parse than looking at the archived Material Design site.
I'm also working on a follow-up to add an overview example for
`BreakpointObserver`.
Fixes#11788
|`Small`|`(min-width: 600px) and (max-width: 959.98px)`|
44
+
|`Medium`|`(min-width: 960px) and (max-width: 1279.98px)`|
45
+
|`Large`|`(min-width: 1280px) and (max-width: 1919.98px)`|
46
+
|`XLarge`|`(min-width: 1920px)`|
47
+
|`Handset`|`(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)`|
48
+
|`Tablet`|`(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)`|
49
+
|`Web`|`(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)`|
50
+
|`HandsetPortrait`|`(max-width: 599.98px) and (orientation: portrait)`|
51
+
|`TabletPortrait`|`(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)`|
52
+
|`WebPortrait`|`(min-width: 840px) and (orientation: portrait)`|
53
+
|`HandsetLandscape`|`(max-width: 959.98px) and (orientation: landscape)`|
54
+
|`TabletLandscape`|`(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)`|
55
+
|`WebLandscape`|`(min-width: 1280px) and (orientation: landscape)`|
49
56
50
-
The built-in breakpoints based on [Google's Material Design
0 commit comments