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
Copy file name to clipboardExpand all lines: src/tailwindTheme.ts
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,20 @@ export const tailwindTheme = {
6
6
theme: {
7
7
container: {
8
8
center: true,
9
-
padding: "2rem",
9
+
padding: '2rem',
10
10
screens: {
11
-
xs: '375px',
12
-
sm: '576px',
13
-
md: '768px',
14
-
lg: '1024px',
15
-
xl: '1280px',
16
-
'2xl': '1536px',
17
-
'3xl': '1920px',
11
+
'2xl': '1400px',// In order to be backward compatible with previous max-width for 2xl we set it to 1400px. All containers will have a max width of 1400px at 2xl screens and above
18
12
},
19
13
},
14
+
screens: {// Overriding default breakpoints - We want to replace rather than extend - all the breakpoints must be clearly defined here
0 commit comments