blob: b695cbbe5189fde261fe77846f36231a6fdc5bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,cljs}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
"nunito-sans": ["Nunito Sans", "sans-serif"],
},
screens: {
"xs": "480px",
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@vidstack/react/tailwind.cjs")
],
}
|