-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 1.46 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
41
42
43
44
45
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundSize: {
auto: "auto",
cover: "cover",
contain: "contain",
"10%": "10rem 10rem",
"100-100%": "100% 100%",
},
maxHeight: {
"maxh-h-30rem": "30rem",
},
height: {
"40rem": "40rem",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
"white-oval": "url('../public/homepage/whiteOval.svg')",
"react-leaf": "url('../public/homepage/react-leaf.svg')",
// "about-us": "url('../public/aboutus/aboutBanner.jpeg')",
"about-us":
"url('https://res.cloudinary.com/dpauqvsd6/image/upload/v1703068198/aboutBanner_fkcyqv.webp')",
"banner-manu":
"url('https://res.cloudinary.com/dpauqvsd6/image/upload/v1703069152/manufacturing_nnuq89.webp')",
"banner-products":
"url('https://res.cloudinary.com/dpauqvsd6/image/upload/v1703070017/productBanner_fnb8jg.webp')",
},
fontFamily: {
sans: ["var(--font-inter)"],
mono: ["var(--font-roboto-mono)"],
// poppins: ["var(--font-poppins)"],
},
},
},
plugins: [],
};