public/tailwind.config.js

22 lines
414 B
JavaScript
Raw Normal View History

2022-12-02 01:10:56 -05:00
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: [
{
hr: {
marginTop: "1.5em",
marginBottom: "1.5em",
},
},
],
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};