1
0
Fork 0
forked from github/pelican

feat: add work in progress state

This commit is contained in:
Oliver Ladner 2024-10-21 07:53:36 +02:00
commit de5b3aec04
14 changed files with 2537 additions and 37 deletions

View file

@ -0,0 +1,29 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/*.html"],
theme: {
//spacing: {},
//fontSize: {
// sm: "0.8rem",
// base: "1.2rem",
// xl: "1.25rem",
// "2xl": "1.563rem",
// "3xl": "1.953rem",
// "4xl": "2.441rem",
// "5xl": "3.052rem",
// "6xl": "4.052rem",
// "7xl": "5.052rem",
//},
//fontFamily: {
//sans: ["Erode", "sans-serif"],
//serif: ["Recia", "serif"],
//},
// We don't use extend as we want to limit certain things like colors,
// fontsize to our own liking
extend: {},
},
plugins: [],
//corePlugins: {
// preflight: false,
//},
};