-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (37 loc) · 852 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
38 lines (37 loc) · 852 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
width: {
'112':'28rem',
'128':'32rem',
'144':'36rem',
'160':'40rem'
},
height: {
'80svh': '80svh',
'70svh': '70svh',
'60svh': '60svh',
'10svh': '10svh'
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
boxShadow: {
'button': 'black 3px 3px',
},
translate: {
'3px': '3px'
}
},
},
plugins: [],
};
export default config;