Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"branches": [
"main",
{
"name": "fix-move-deps",
"prerelease": true
"name": "new-breakpoints",
"prerelease": false
}
]
},
Expand Down
19 changes: 11 additions & 8 deletions src/tailwindTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ export const tailwindTheme = {
theme: {
container: {
center: true,
padding: "2rem",
padding: '2rem',
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1920px',
'large-laptop': '1400px', // Above 1400px wide screens set containers to have a max-width of 1400px
},
},
screens: { // Overriding default breakpoints - We want to replace rather than extend - all the breakpoints must be clearly defined here
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1920px',
},
extend: {
colors: {
border: "hsl(var(--border))",
Expand Down