diff --git a/Changelog.md b/Changelog.md index 16e59a54e..312916363 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,7 @@ # 0.7.12.0 ## Refactor +* Harmonize markdown titles sizes [#8029](https://github.com/diaspora/diaspora/pull/8029) ## Bug fixes * Improve handling of mixed case hostnames while fetching OpenGraph data [#8021](https://github.com/diaspora/diaspora/pull/8021) diff --git a/app/assets/stylesheets/markdown-content.scss b/app/assets/stylesheets/markdown-content.scss index 6b092dbdb..c5813de21 100644 --- a/app/assets/stylesheets/markdown-content.scss +++ b/app/assets/stylesheets/markdown-content.scss @@ -16,6 +16,30 @@ } } + h1 { + font-size: 2.7rem; + } + + h2 { + font-size: 2.3rem; + } + + h3 { + font-size: 2rem; + } + + h4 { + font-size: 1.8rem; + } + + h5 { + font-size: 1.6rem; + } + + h6 { + font-size: 1.4rem; + } + .img-responsive { display: inline; }