forked from medeirotech/devodeployar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
37 lines (36 loc) · 779 Bytes
/
tailwind.config.ts
File metadata and controls
37 lines (36 loc) · 779 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
import plugin from "tailwindcss/plugin";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {
fontFamily: {
sans: ["Mukta", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
},
screens: {
xs: '400px',
}
},
},
plugins: [
plugin(function ({ addComponents }) {
addComponents({
".flex-column": {
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
},
".should-deploy-bg": {
background:
"linear-gradient(180deg, rgba(0,205,58,1) 0%, rgba(0,163,46,1) 100%)",
},
".should-not-deploy-bg": {
background:
"linear-gradient(180deg, rgba(255,60,60,1) 0%, rgba(231,37,37,1) 100%)",
},
});
}),
],
};