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
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+10-12
Original file line number
Diff line number
Diff line change
@@ -36,18 +36,16 @@ We can associate breakpoints with mediaQuery definitions using breakpoint **alia
36
36
37
37
| breakpoint | mediaQuery |
38
38
|--------|--------|
39
-
| "" |`screen`|
40
-
| xs |`screen and (max-width: 479px)`|
41
-
| gt-xs |`screen and (min-width: 480px)`|
42
-
| sm |`screen and (max-width: 599px)`|
43
-
| gt-sm |`screen and (min-width: 600px)`|
44
-
| md |`screen and (min-width: 600px) and (max-width: 959px)`|
45
-
| gt-md |`screen and (min-width: 960px)`|
46
-
| lg |`screen and (min-width: 960px) and (max-width: 1279px)`|
47
-
| gt-lg |`screen and (min-width: 1280px)`|
48
-
| xl |`screen and (min-width: 1280px) and (max-width: 1919px)`|
49
-
| gt-xl |`screen and (min-width: 1920px)`|
50
-
39
+
| "" | 'screen' |
40
+
| xs | 'screen and (max-width: 599px)' |
41
+
| gt-xs | 'screen and (min-width: 600px)' |
42
+
| sm | 'screen and (min-width: 600px) and (max-width: 959px)' |
43
+
| gt-sm | 'screen and (min-width: 960px)' |
44
+
| md | 'screen and (min-width: 960px) and (max-width: 1279px)' |
45
+
| gt-md | 'screen and (min-width: 1280px)' |
46
+
| lg | 'screen and (min-width: 1280px) and (max-width: 1919px)'|
47
+
| gt-lg | 'screen and (min-width: 1920px)' |
48
+
| xl | 'screen and (min-width: 1920px)' |
51
49
<br/>
52
50
53
51
If we combine the breakpoint `alias` with the Layout API we can easily support Responsive breakpoints with a simple markup convention: the `alias` is used as suffix extensions to the Layout API.:
0 commit comments