-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 1.05 KB
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 1.05 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
xsss: "375px",
xss: "390px",
xs: "480px",
},
fontFamily: {
inter: ["Inter", "Lato", "Playfair", "sans-serif"],
lato: ["Lato", "Inter", "sans-serif"],
playfair: ["Playfair", "Lato", "Inter", "sans-serif"],
heading: ["Playfair", "Lato", "Inter", "sans-serif"],
},
},
backgroundPosition: {
"top-64": "center top 4rem",
},
animation: {
"pulse-slow": "pulse 3s linear 3",
},
fontFamily: {
// sans: ["Sofia Pro", "Arial", "sans-s erif"],
},
},
plugins: [
require("tailwindcss-textshadow"),
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
require("tailwind-scrollbar"),
],
};