-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (64 loc) · 1.81 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
animation: {
typewriter: 'typewriter 2s steps(11) forwards',
caret: 'typewriter 2s steps(11) forwards, blink 1s steps(11) infinite 2s',
},
keyframes: {
typewriter: {
to: {
left: '100%',
},
},
blink: {
'0%': {
opacity: '0',
},
'0.1%': {
opacity: '1',
},
'50%': {
opacity: '1',
},
'50.1%': {
opacity: '0',
},
'100%': {
opacity: '0',
},
},
},
},
zIndex: {
auto: "auto",
0: "0",
1: "1",
2: "2",
10: "10",
20: "20",
30: "30",
40: "40",
50: "50",
100: "100",
110: "110",
990: "990",
sticky: "1020",
},
},
plugins: [forms, typography],
};