-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./src/**/*.{html,js,ts,jsx,tsx}",
],
theme: {
extend: {
aspectRatio: {
'4/3': '4 / 3',
},
fontFamily: {
'sans': ['"Proxima Nova"', ...defaultTheme.fontFamily.sans],
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
},
animation : {
'spin-slow-30': 'spin 30s linear infinite',
'spin-slow-25': 'spin 25s linear infinite',
'spin-slow-10': 'spin 10s linear infinite',
'marquee-infinite' : 'marquee 2s linear infinite',
fade: 'fadeIn .5s ease-in-out',
},
},
},
plugins: [],
}