-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (40 loc) · 868 Bytes
/
tailwind.config.js
File metadata and controls
48 lines (40 loc) · 868 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
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./tailwind/**/*.html"],
darkMode: "class",
theme: {
// screens: {
// sm: "576px",
// md: "768px",
// lg: "992px",
// xl: "1200px",
// "2xl": "1400px",
// },
container: {
center: true,
// padding: {
// DEFAULT: "1rem",
// },
// screens: {
// sm: "540px",
// md: "720px",
// lg: "960px",
// xl: "1140px",
// "2xl": "1320px",
// },
},
extend: {
// boxShadow: {
// cardShadow: "0 11px 49px rgba(213, 213, 213, 0.5)",
// },
// colors: {
// border: " #d1d1d1",
// btnBorder: "#00000033",
// themeColor: "#0d6efd",
// white: "#fff",
// black: "#000",
// },
},
},
plugins: [],
};