-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.1 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
46
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.tsx"],
darkMode: ["selector", "[data-theme='dark']"],
theme: {
fontFamily: {
roboto: ["Roboto"],
fira: ["Fira Code"],
inter: ["Inter", 'sans-serif'],
},
extend: {
container: {
screens: {
xl: "1400px",
},
padding: "1rem",
center: true,
},
animation: {
"drag-outline":
"drag-outline-dance 0.15s linear infinite, drag-outline-inset 0.25s ease-in-out forwards",
},
keyframes: {
"drag-outline-dance": {
to: {
"background-position":
"left var(--w) top, right var(--w) bottom, left bottom var(--w), right top var(--w)",
},
},
"drag-outline-inset": {
to: {
left: "12px",
right: "12px",
top: "12px",
bottom: "12px",
},
},
},
gridTemplateColumns: {
14: "repeat(14, minmax(0, 1fr))",
16: "repeat(16, minmax(0, 1fr))",
},
},
},
plugins: [],
};