-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (34 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: "16px",
},
extend: {
backgroundImage: {
"banner-bg": 'url("https://web-landing-travel.vercel.app/banner.png")',
"snow-hills":
'url("https://web-landing-travel.vercel.app/most-people/snow-hills.png")',
village:
'url("https://web-landing-travel.vercel.app/most-people/village.png")',
"buck-kit":
'url("https://web-landing-travel.vercel.app/most-people/buck-kit.png")',
"new-dream":
'url("https://web-landing-travel.vercel.app/most-people/new-dream.png")',
ithaly:
'url("https://web-landing-travel.vercel.app/most-people/ithaly.png")',
"lake-silent":
'url("https://web-landing-travel.vercel.app/most-people/lake-silent.png")',
},
},
fontFamily: {
sans: ["Poppins", "Arial", "sans-serif"],
},
},
plugins: [],
};