-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
47 lines (42 loc) · 973 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
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
transitionDuration:
{
'1':'1s'
},
boxShadow:
{
'3xl': '-2px -2px 40px 30px',
},
animation:{
'bounce-slow':'bounce 2s 1 ease-out forwards',
}
},
screens: {
lg: { max: "1800px" },
lgm: { max: "1140px" },
md: { max: "990px" },
sm: { max: "600px" },
xs: { max: "300px" },
minmd: "1700px",
minlg: "2100px",
},
fontFamily: {
sans: ["Poppins", ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
about: "url('../paramarsh/src/components/2.jpg')",
contact: "url('../paramarsh/src/components/3.jpg')",
team: "url('../paramarsh/src/components/4.jpg')",
event: "url('../paramarsh/src/components/5.jpg')",
},
},
variants: {
extend: {},
},
plugins: [],
};