-
-
Notifications
You must be signed in to change notification settings - Fork 960
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (21 loc) · 726 Bytes
/
tailwind.config.js
File metadata and controls
26 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
xs: { min: '310px' },
// => @media (min-width: 640px and max-width: 767px) { ... }
sm: { min: '640px' },
// => @media (min-width: 640px and max-width: 767px) { ... }
md: { min: '768px' },
// => @media (min-width: 768px and max-width: 1023px) { ... }
lg: { min: '1024px' },
// => @media (min-width: 1024px and max-width: 1279px) { ... }
xl: { min: '1280px' },
// => @media (min-width: 1280px and max-width: 1535px) { ... }
'2xl': { min: '1536px' }
// => @media (min-width: 1536px) { ... }
},
extend: {}
},
plugins: [require('tailwind-scrollbar')]
};