Files
football-next/tailwind.config.ts
2026-05-03 17:01:46 +03:30

22 lines
375 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Lahze", "sans-serif"],
},
animation: {
"bounce-once": "bounce 0.6s ease-in-out 1",
},
},
},
plugins: [],
};
export default config;