-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (32 loc) · 814 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (32 loc) · 814 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
import plugin from 'tailwindcss/plugin'
import defaultTheme from 'tailwindcss/defaultTheme'
export default {
darkMode: 'class',
important: true,
content: [
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./index.html'
],
theme: {
screens: {
['sm']: '640px',
['md']: '768px',
['lg']: '1024px',
['xl']: '1280px',
['2xl']: '1536px'
},
extend: {
fontFamily: {
sans: ['"Quicksand"', ...defaultTheme.fontFamily.sans],
quicksand: ['"Quicksand"', ...defaultTheme.fontFamily.sans],
akshar: ['"Akshar"', ...defaultTheme.fontFamily.sans],
"bebas-neue": ['"Bebas Neue"', ...defaultTheme.fontFamily.sans]
}
}
},
plugins: [
plugin(function ({ addVariant }) {
addVariant('not-last', '&:not(:last-child)')
})
]
}