-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (47 loc) · 1013 Bytes
/
tailwind.config.ts
File metadata and controls
48 lines (47 loc) · 1013 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
39
40
41
42
43
44
45
46
47
48
// tailwind.config.ts
import type { Config } from "tailwindcss";
export default <Partial<Config>>{
content: [
"./pages/**/*.{vue,js,ts}",
"./components/**/*.{vue,js,ts}",
"./layouts/**/*.{vue,js,ts}",
"./plugins/**/*.{js,ts}",
"./nuxt.config.ts",
],
theme: {
screens: {
m300: "300px",
m400: "400px",
m500: "500px",
m600: "600px",
m700: "700px",
m800: "800px",
m900: "900px",
m1000: "1000px",
m1100: "1100px",
m1200: "1200px",
m1300: "1300px",
m1400: "1400px",
m1500: "1500px",
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
mxx: "1920px",
},
extend: {
fontFamily: {
system: [
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
"Helvetica",
"Arial",
"sans-serif",
],
},
},
},
// plugins: [],
};