-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
28 lines (27 loc) · 893 Bytes
/
tailwind.config.ts
File metadata and controls
28 lines (27 loc) · 893 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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
screens: {
'custom-xl': { 'min': '1280px', 'max': '800px' },
'custom-lg': { 'min': '1023px', 'max': '1281px' },
'custom-md': { 'min': '900px', 'max': '1024px' },
'custom-sm': { 'min': '800px', 'max': '900px' },
'custom-xs': { 'min': '700px', 'max': '800px' },
'custom-xxs': { 'min': '500px', 'max': '700px' },
'custom-tiny': { 'min': '400px', 'max': '500px' },
'custom-mini': { 'min': '200px', 'max': '400px' },
},
},
},
plugins: [],
} satisfies Config;