22 lines
414 B
JavaScript
22 lines
414 B
JavaScript
|
/** @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")],
|
||
|
};
|