diff --git a/CHANGELOG.md b/CHANGELOG.md index 09acd2bf6..1c49569d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Bug Fixes +* **css:** Article max-width restricted to size of parent container (#422) * **css:** Increase contrast on sidebar mobile menu (#407) # 7.0.2 diff --git a/src/assets/sass/protocol/components/_article.scss b/src/assets/sass/protocol/components/_article.scss index 6e4ed8d1b..535a442b1 100644 --- a/src/assets/sass/protocol/components/_article.scss +++ b/src/assets/sass/protocol/components/_article.scss @@ -5,7 +5,8 @@ @import '../includes/lib'; .mzp-c-article { - max-width: $content-md; + width: $content-md; + max-width: 100%; // Step down the heading levels h2 {