diff --git a/CHANGELOG.md b/CHANGELOG.md index 6be27e9..ffafe62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ **Improved:** * Various minor enhancements to Search plugin +**Bugfix:** +* Fixed incorrect theme CSS with regards to image scaling (with thanks and appreciation to @harlows for the PR) + ## [v1.3.0](https://github.com/hibbitts-design/docsify-open-publishing-starter-kit/releases/tag/v1.3.0) ### 02/04/2025 diff --git a/docs/assets/css/theme.css b/docs/assets/css/theme.css index a6f963f..ff9fd59 100644 --- a/docs/assets/css/theme.css +++ b/docs/assets/css/theme.css @@ -460,12 +460,12 @@ } .markdown-section .image-50 { - width: 75%; + width: 50%; height: auto; } .markdown-section .image-25 { - width: 75%; + width: 25%; height: auto; } @@ -476,13 +476,13 @@ } .markdown-section .image-50-border { - width: 75%; + width: 50%; height: auto; border: 1px solid #dfdfdf; } .markdown-section .image-25-border { - width: 75%; + width: 25%; height: auto; border: 1px solid #dfdfdf; }