Skip to content

Commit

Permalink
🚧 hotfix in production: screens sizes declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
jamerrq committed Jan 23, 2024
1 parent 09b74b5 commit 98e2453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tailwind.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export default {
lg: { min: '1024px', max: '1279px' },
// => @media (min-width: 1024px and max-width: 1279px) { ... }

xl: { min: '1280px', max: '1535px' },
xl: { min: '1280px' } //, max: '1535px' },
// => @media (min-width: 1280px and max-width: 1535px) { ... }

'2xl': { min: '1536px' },
// '2xl': { min: '1536px' },
// => @media (min-width: 1536px) { ... }
},
extend: {
Expand Down

0 comments on commit 98e2453

Please sign in to comment.