Skip to content

Commit

Permalink
update blockquote padding to work with h6s
Browse files Browse the repository at this point in the history
h6s need additional left padding to display properly beside the content.
Before this change, h6s would show partially in the blockquote and
partially outside of it.
  • Loading branch information
erykwalder committed Oct 18, 2022
1 parent 83428a2 commit e82fbd5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Dayspring",
"version": "1.0.0",
"version": "1.0.1",
"minAppVersion": "1.0.0",
"author": "Eric Rykwalder",
"authorUrl": "https://github.com/erykwalder"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dayspring-obsidian-theme",
"version": "1.0.0",
"version": "1.0.1",
"scripts": {
"version": "node version-bump.mjs && git add manifest.json versions.json"
}
Expand Down
Binary file modified screenshots/fullsize.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/thumbnail.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ span.cm-quote.cm-strong {
/* Padding and radius around blockquotes */
.markdown-rendered blockquote,
.markdown-source-view.is-live-preview .HyperMD-quote {
padding: var(--size-4-4);
padding: var(--size-4-4) var(--size-4-6) var(--size-4-4) var(--size-4-12);
}

.markdown-rendered blockquote {
Expand Down
5 changes: 3 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"1.0.0": "1.0.0"
}
"1.0.0": "1.0.0",
"1.0.1": "1.0.0"
}

0 comments on commit e82fbd5

Please sign in to comment.