feat: shrink hr margin

This commit is contained in:
2022-12-02 01:10:56 -05:00
parent 751033960b
commit 24c2fa6a6f
3 changed files with 23 additions and 11 deletions

21
tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
/** @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")],
};