-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.21 KB
/
tailwind.config.ts
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
49
50
51
52
53
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
maxWidth: {
'100vh': '100vh',
'50vh': '50vh',
'600': '600px',
},
minWidth: {
'600': '600px',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
spacing: {
sm: '0.5rem',
md: '1rem',
lg: '1.5rem',
xl: '2rem',
},
backdropBlur: {
xs: '2px',
},
height: {
'topic-banner-pc': '594px',
'topic-banner-tablet': '310px',
'topic-banner-mobile': '230px',
},
textShadow: {
default: '2px 2px 4px rgba(0, 0, 0, 0.5)',
},
gridTemplateColumns: {
'.65': '.65fr 1fr',
},
zIndex: {
splash: '999',
header: '100',
modal: '100',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
};
export default config;