-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 917 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 917 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
gridTemplateColumns: {
'52': 'repeat(52, minmax(0, 1fr))'
}
},
screens: {
'sm': {
'max': '768px'
},
'smd': {
'max': '1024px'
},
'md': {
'max': '1280px'
},
'lg': {
'min': '1281px',
'max': '1440px'
},
'2lg': {
'max': '1680px'
},
'bsm': {
'min': '769px'
},
'bmd': {
'min': '1281px'
},
'blg': {
'min': '1441px'
}
}
},
plugins: [],
};