forked from ngxson/alpaca.cpp-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 960 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
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
maxHeight: {
120: "60vh",
"100%": "100%",
"30vh": "30vh",
},
minHeight: {
"10vh": "12vh",
},
height: {
"85%": "85%",
"15%": "15%",
},
width: {
"50vw": "50vw",
"10vw": "10vw",
"79.71%": "79.71%",
"20.29%": "20.29%",
},
backgroundColor: {
"gray-800": "rgba(52,53,65,1)",
"vert-light-gradient": "linear-gradient(180deg,hsla(0,0%,100%,0) 13.94%,#fff 54.73%)",
},
backgroundImage:{
"vert-light-gradient": "linear-gradient(180deg,hsla(0,0%,100%,0) 13.94%,#fff 54.73%)",
}
},
},
plugins: [],
};