mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 14:49:58 -07:00
24 lines
587 B
TypeScript
24 lines
587 B
TypeScript
import containerQueries from "@tailwindcss/container-queries";
|
|
import { type Config } from "tailwindcss";
|
|
import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{html,js,jsx,ts,tsx}", "./index.html"],
|
|
darkMode: "class",
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Lexend", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
screens: {
|
|
"2xl": "1600px",
|
|
short: { raw: "(max-height: 350px)" },
|
|
},
|
|
},
|
|
},
|
|
plugins: [containerQueries],
|
|
} satisfies Config;
|