Skip to content

Commit

Permalink
v5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
robdekort committed Sep 13, 2022
1 parent 7d63a4e commit a92d281
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v5.15 (2022-09-13)

### What's improved
- Force prose first / last children to have get mt-0 / mb-0. ecd234f9 by @robdekort

## v5.14 (2022-09-12)

### What's improved
Expand Down
1 change: 1 addition & 0 deletions public/build/assets/site.19818d18.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"isEntry": true
},
"resources/css/site.css": {
"file": "assets/site.99cef19f.css",
"file": "assets/site.19818d18.css",
"src": "resources/css/site.css",
"isEntry": true
}
Expand Down
9 changes: 9 additions & 0 deletions tailwind.config.typography.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ module.exports = {
marginTop: '0em !important',
marginBottom: '0em !important',
},
'.prose :where(.prose > div > :first-child):not(:where([class~="not-prose"] *))': {
marginTop: '0 !important',
},
'.prose :where(.prose > div > :last-child):not(:where([class~="not-prose"] *))': {
marginBottom: '0 !important',
},
'.not-prose': {
margin: '2rem 0 !important',
}
}
}
}),
Expand Down

0 comments on commit a92d281

Please sign in to comment.