-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
29 lines (28 loc) · 1001 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
backgroundImage: {
'my-image': "url('https://img.freepik.com/free-photo/studio-shot-pretty-black-woman-with-white-shopping-bag-standing-yellow-background-trendy-spring-fashionable-look_273443-10.jpg?w=2000&t=st=1692034940~exp=1692035540~hmac=0cc351da3993442b4943187e51a72658de6a9ee7016db65e51a19ca13962aaa3')",
'banner-image': "url('https://as2.ftcdn.net/v2/jpg/06/00/89/49/1000_F_600894907_AY04IDdkfOGHRcmNumuzU7QLnZ7bASBV.jpg?w=2000')"
},
height: {
'80vh': '80vh',
},
keyframes: {
verticalBounce: {
"0%, 100%": { transform: "translateX(0)" },
"50%": { transform: "translateX(6px)" },
"100%": { transform: "translateX(0)" },
},
},
animation: {
verticalBounce: 'verticalBounce 1s ease-in-out infinite',
}
},
},
plugins: [],
}