-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 1022 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontFamily: {
headings: [
"Lexend",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
],
body: ["Inter", "sans-serif"],
},
extend: {
screens: {
"mantine-xs": "30em",
"mantine-sm": "48em",
"mantine-md": "64em",
lg: "74em",
xl: "90em",
},
spacing: {
// TODO: Check if there souhldnt be em units in mantine v7
xs: "0.625rem",
sm: "0.75rem",
md: "1rem",
lg: "1.25rem",
xl: "1.5rem",
},
},
},
corePlugins: {
preflight: false,
},
plugins: [],
};