From: Vladimír Vondruš Date: Wed, 23 Aug 2017 15:46:31 +0000 (+0200) Subject: css: make text alignment work properly with .m-noindent. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=847b1e85ad35767a7af4eb325ec8c57b7e6c9023;p=blog.git css: make text alignment work properly with .m-noindent. --- diff --git a/css/m-components.css b/css/m-components.css index f4882e9a..d6889cc2 100644 --- a/css/m-components.css +++ b/css/m-components.css @@ -442,13 +442,13 @@ div.m-scroll { .m-fullwidth { width: 100%; } -.m-text-center { +.m-text-center, .m-text-center.m-noindent { text-align: center; } -.m-text-left { +.m-text-left, .m-text-left.m-noindent { text-align: left; } -.m-text-right { +.m-text-right, .m-text-right.m-noindent { text-align: right; }