Ajouter des fichiers et des modifications existants

This commit is contained in:
Pierre Berthe 2024-02-29 11:24:22 +01:00
commit 4ea514650d
13 changed files with 1481 additions and 0 deletions

14
tailwind.config.cjs Normal file
View file

@ -0,0 +1,14 @@
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/*.html"],
theme: {
extend: {
fontFamily: {
sans: ["Inter var", ...fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/forms")],
};