-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (44 loc) · 942 Bytes
/
tailwind.config.js
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
43
44
45
46
47
48
49
const defaultTheme = require('tailwindcss/defaultTheme') // eslint-disable-line
const colors = require('tailwindcss/colors') // eslint-disable-line
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`components/**/*.{vue,js,ts}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`composables/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`,
],
theme: {
container: {
center: true,
padding: {
'DEFAULT': '1.5rem',
},
},
screens: {
'mobile': '426px',
'tablet': '768px',
'desktop': '1024px',
'mouse-only': { raw: '(pointer: fine)' },
'touch-only': { raw: '(pointer: coarse)' },
},
fontFamily: {
'display': ['Plus Jakarta Sans', ...defaultTheme.fontFamily.sans],
},
extend: {
zIndex: {
'60': '60',
},
spacing: {
'auto': 'auto',
'inherit': 'inherit',
},
colors: {
'primary': colors.teal[300],
},
},
},
}