forked from hqasmei/tailwindcss-and-nextjs-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
40 lines (38 loc) · 1015 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
bounce: "bounce 0.5s alternate cubic-bezier(0.95, 0.05, 0.795, 0.035) infinite",
slideUpCubezier: "slideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1)",
},
keyframes: {
bounce : {
from : { transfrom: "translatey(10px)" },
to: { transefrom: "translatey(0)" },
},
slideUp: {
from: { transefrom:"translatey(10px)" },
to: { transefrom:"translatey(0)" },
},
},
boxShadow: {
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
},
blur: {
xs: '2px',
},
boxShadow: {
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
},
},
},
plugins: [],
}