Skip to content

Commit

Permalink
fixed sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshack committed Nov 20, 2023
1 parent 25a6054 commit 28b0d98
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ module.exports = {
theme: {
screens: {
xs: '360px',
sm: '640px',
// => @media (min-width: 640px) { ... }

md: '768px',
// => @media (min-width: 768px) { ... }

lg: '1024px',
// => @media (min-width: 1024px) { ... }

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

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

0 comments on commit 28b0d98

Please sign in to comment.