-
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) · 810 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
28 lines (27 loc) · 810 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";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
gridTemplateColumns: {
// put all of our products in a grid and auto fit them into an index grid
// and it's gonna make sure that when the actual product gets smaller than 15rem,
// it's gonna jump into another row, and it's gonna stretch out to 1fr
fluid: "repeat(auto-fit, minmax(15rem, 1fr))",
},
fontFamily: {
lobster: ["var(--font-lobster)"],
roboto: ["var(--font-roboto)"],
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["light", "dark"],
},
};
export default config;