Skip to content

Commit

Permalink
fix: blockquotes no longer add quotes by default
Browse files Browse the repository at this point in the history
  • Loading branch information
pluja committed Jun 15, 2024
1 parent 24edb94 commit c9e4442
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"tww": "npx tailwindcss -i ./static/css/input.css -o ./static/css/style.css --watch",
"twb": "npx tailwindcss -i ./static/css/input.css -o ./static/css/style.css --minify"
}
}
}
8 changes: 8 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ module.exports = {
fontFamily: {
'garamond': ['garamond', 'serif'],
},
typography: {
DEFAULT: {
css: {
'blockquote p:first-of-type::before': false,
'blockquote p:first-of-type::after': false,
},
},
},
},
},
plugins: [
Expand Down

0 comments on commit c9e4442

Please sign in to comment.