-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 950 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 950 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
pulse: "pulse 0.1s ease-in-out",
},
fontFamily: {
kepatihan: ["var(--font-kepatihan)"],
},
fontSize: {
"2xs": "0.5rem",
},
height: {
screen: ["100vh /* fallback for older browers */", "100dvh"],
},
keyframes: {
pulse: {
"0%, 100%": { transform: "scale(1)" },
"50%": { transform: "scale(1.1)", fill: "rgb(153 27 27)" },
},
},
screens: {
wide: { raw: "(max-height: 428px)" },
xs: "420px",
},
width: {
screen: ["100vw /* fallback for older browers */", "100dvw"],
},
},
},
plugins: [],
};