Initial CV lib commit
This commit is contained in:
27
tailwind.config.js
Normal file
27
tailwind.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
mode: "jit",
|
||||
content: [
|
||||
"./css/*.{js,ts,jsx,tsx,css,scss,html}",
|
||||
"./css/**/*.{js,ts,jsx,tsx}",
|
||||
"./src/**/*.{js,ts,jsx,tsx,rs,scss,css,html}",
|
||||
"./index.html",
|
||||
"./src/main.rs",
|
||||
],
|
||||
plugins: [require("daisyui"), require("@tailwindcss/typography")],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ["Figtree"],
|
||||
serif: ["Rufina"],
|
||||
mono: ["Cousine"],
|
||||
},
|
||||
width: {
|
||||
a4: "210mm",
|
||||
},
|
||||
height: {
|
||||
a4: "297mm",
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user