-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
35 lines (34 loc) · 910 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
const { clamp } = require("react-slick/lib/utils/innerSliderUtils");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./node_modules/tw-elements/dist/js/**/*.js"],
theme: {
extend: {
colors: {
underlineOrange: "#E1AA43",
},
height: {
cardheight: "450px",
cardheightmobile: "560px",
},
top: {
topOfAbsoluteButton: "92.5%",
},
lineClamp: {
10: "10",
},
backgroundImage: {
"hero-bg": "url('/src/assets/hero-bg.svg')",
"hero-loop": "url('/src/assets/LOOP.png')",
"header-carikelompok": "url('/src/assets/header-bg-carikelompok.svg')",
},
screens: {
"3xl": "1800px",
},
},
fontFamily: {
signika: ["Signika"],
poppins: ["Poppins"],
},
},
plugins: [require("@tailwindcss/line-clamp"), require('tw-elements/dist/plugin')],
};