doc: update tailwind configuration

This commit is contained in:
Leon Xu
2023-01-23 15:51:01 -08:00
parent a83b856c85
commit c41a21790b
+16 -3
View File
@@ -1,8 +1,21 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {},
extend: {
screens: {
xs: "480px",
},
fontFamily: {
inter: ["Inter var", "sans-serif"],
},
boxShadow: {
card: "0 0 1px 0 rgba(189,192,207,0.06),0 10px 16px -1px rgba(189,192,207,0.2)",
cardhover:
"0 0 1px 0 rgba(189,192,207,0.06),0 10px 16px -1px rgba(189,192,207,0.4)",
},
},
},
plugins: [],
}
};