-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
43 lines (40 loc) · 916 Bytes
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
'open-sans': ['Open Sans', 'sans-serif'],
'oswald': ['Oswald', 'Impact', 'sans-serif']
},
gridRow: {
'span-16': 'span 16 / span 16',
},
gridTemplateRows: {
// Simple 16 row grid
'20': 'repeat(20, minmax(0, 1fr))',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
}
},
plugins: [],
variants: {
extend: {
width: ['responsive', 'hover', 'focus'],
height: ['responsive', 'hover', 'focus'],
},
},
corePlugins: {
// ...
transitionProperty: true,
transitionDuration: true,
transitionTimingFunction: true,
transitionDelay: true,
},
};
export default config;