-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
30 lines (29 loc) · 914 Bytes
/
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
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: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
fontFamily: {
"display": ["Roboto", "Helvetica", "sans-serif"]
},
// override media queries to be desktop-first
screens: {
'2xl': {'max': '1535px'}, // => @media (max-width: 1535px) { ... }
'xl': {'max': '1279px'}, // => @media (max-width: 1279px) { ... }
'lg': {'max': '1023px'}, // => @media (max-width: 1023px) { ... }
'md': {'max': '767px'}, // => @media (max-width: 767px) { ... }
'sm': {'max': '639px'}, // => @media (max-width: 639px) { ... }
}
},
plugins: [],
};
export default config;