-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
45 lines (45 loc) · 937 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
fontFamily: {
'poppins': ['"Poppins"'],
},
height: theme => ({
auto: 'auto',
...theme('spacing'),
full: '100%',
screen: 'calc(var(--vh) * 100)',
}),
minHeight: theme => ({
'0': '0',
...theme('spacing'),
full: '100%',
screen: 'calc(var(--vh) * 100)',
}),
extend: {
colors: {
primary: colors.rose,
secondary: colors.indigo
},
fontSize: {
'2xs': '0.6rem',
},
letterSpacing: {
'extra-wide': '.23rem'
},
backgroundImage: {
'downloadable-section': 'url(/bg-1.webp)'
}
},
},
plugins: [
require('@tailwindcss/forms')
],
}